Hey all,
I have a form that looks at a folder and takes text files in and parses them. The parse is simple. On the form load I have to make sure the folder is empty and take any files that might be in there. I then move them to an archive directory. However, I get an error when I try to move the file. My error is "The process cannot access the file because it is being used by another process." Why is this not closing properly?
I have a form that looks at a folder and takes text files in and parses them. The parse is simple. On the form load I have to make sure the folder is empty and take any files that might be in there. I then move them to an archive directory. However, I get an error when I try to move the file. My error is "The process cannot access the file because it is being used by another process." Why is this not closing properly?
Code:
Imports System.IO
Public Class Form1
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim mypath As String = "C:\Sort1OrderData\"
Dim outpath As String = "C:\Sort1OrderArchive\"
Dim myinput, barcode, carrier As String
Dim location As Integer
Dim Dir As System.IO.DirectoryInfo = New DirectoryInfo(mypath)
For Each fi As FileInfo In Dir.GetFiles()
myinput = fi.OpenText.ReadLine
If myinput.Length > 1 Then
location = InStr(myinput, "|")
barcode = Mid(myinput, 1, location - 1)
carrier = Mid(myinput, location + 1)
ListBox1.Items.Add(barcode)
ListBox2.Items.Add(carrier)
End If
fi.OpenText.Close()
fi.MoveTo(outpath & fi.Name) ' [b]ERROR HERE[/b]
Next
End Sub
End Class