Hello Friends,
I have a patient register form in my project...
When the patient details will be saved in the database it should also be saved in the text file...
I am dynamically creating a folder with patientid and firstname
in that folder I am creating a text file patientreg.txt and it should contain the contents of text file....
I have wriiten the below code but I am getting an error....
Dim di As DirectoryInfo = New DirectoryInfo(Application.StartupPath & "\" + txtPatientID.Text + txtFName.Text)
If Not di.Exists Then
di.Create()
End If
Dim pathreg As String = di.ToString & "\patientreg.txt"
If File.Exists(pathreg) Then
Debug.Print("True: " + pathreg)
Else
File.Create(pathreg)
Debug.Print("False: " + pathreg)
End If
FileClose()
'Dim objWriter As New System.IO.StreamWriter(pathreg, False)
'objWriter.WriteLine(txtPatientID.Text + "*" + txtFName.Text)
'objWriter.Close()
IO.File.AppendAllText(pathreg, txtPatientID.Text + "*" + txtFName.Text)
Debug.Print("di value: " + di.ToString)
Error: The process cannot access the file 'D:\Pooja\CM\Clinical_Management\Clinical_Management\bin\Debug\435sdfs\patientreg.txt' because it is being used by another process.
Can anyone help me out in this...I also added the code to close the file...but still the error is throwing up....