Moving file from one location to another location
Moving file from one location to another location
Rate Moving file from one location to another location
(1(1 Vote))
'Make a reference to a Microsoft Scripting Runtime Library
Public sub Form_Load()
Dim fso As New FileSystemObject
fso.MoveFile "D:\text.txt", "C:\"
End Sub
'This program move the file test.txt from the "D:\" to "C:\"
Moving file from one location to another location Comments
No comments yet — be the first to post one!
Post a Comment