So, I'm making a program that moves files. But, i have an error.
I can have it select more than 1 file, but now how to make it move more than 1...
AND
Im using a folder browser for the location to be moved, and it needs to to have the file name after it, and if you select more than 1, then it becomes a problem...
Heres my current code:
[php] Dim path As String = TextBox1.Text
Dim destination As String = TextBox2.Text
If File.Exists(path) And Not File.Exists(destination) Then
File.Move(path, destination)
MsgBox("File Moved Successfully", MsgBoxStyle.Information, "Sucess")
Else
MsgBox("The file(s) already exist in the current location.", MsgBoxStyle.Critical, "Error")
End If[/php]
Hmmmm...
Any Help?
