How do I make a copy of a file, or duplicate it, sort of the dos command copy "file.exe > file2.exe"? Can anybody help me?
Printable View
How do I make a copy of a file, or duplicate it, sort of the dos command copy "file.exe > file2.exe"? Can anybody help me?
Use the FileCopy function.
Code:FileCopy "MyFile.exe", "MyNewFile.exe"
Use FileCopy. I think it was likeCode:FileCopy(SourceFile, DestinationFile)
Should I remove my reply?
Thanx again megatron...
Use Name to rename/move a file and kill to delete one.