hi, i am using
fs = New IO.FileStream(FullPath, IO.FileMode.Open, IO.FileAccess.Read, IO.FileShare.Read)
sr = New IO.StreamReader(fs)
Dim line As String
' Read first line.
line = r.ReadLine
i want to know that, while the read is being done for each line of the txt file, is the txt file which is being read locked.
basically i donot want the file to be locked since it is simultaneously being updated by anohter program. does anyone know about this?
...
Go to the complete details ...