Nov 27, 2001 #1 VBXL Programmer Jul 10, 2001 198 GB How do you copy a text file using FileSystemObject Cheers VBXL
Nov 27, 2001 #2 7011 Programmer Nov 27, 2001 8 IN by using CopyFile method in FileSystemObject FileSystemObject.CopyFile <Target>,<Source> ;-) Best Of Luck Upvote 0 Downvote
by using CopyFile method in FileSystemObject FileSystemObject.CopyFile <Target>,<Source> ;-) Best Of Luck
Nov 27, 2001 #3 AdaHacker Programmer Sep 6, 2001 392 US The same way you copy any file: fsobj.CopyFile source, destination Upvote 0 Downvote
Nov 27, 2001 #4 DavidAWH Programmer Nov 4, 2001 16 AU filesystemobject.CopyFile source as string, destination as string, overwritefiles as boolean Upvote 0 Downvote