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