FileCopy to two locations

ShadowsSA

New member
Local time
Tomorrow, 01:40
Joined
Jun 15, 2007
Messages
8
I was wanting to know if anyone knows how to specify two locations, and coping multiple files at once, with the FileCopy function, and only allow saving files in those locations that have been updated since the last save occured.

Please if anyone can help with this
 
For file operations I use the FileSystemObject.
The easiest way to use it is set a reference to Microsoft Scripting Runtime.
(Code window->Menu->Tools->References)
Create the object like...
Code:
Dim fso As New Scripting.FileSystemObject
In the object browser you can see all the file manipulation methods that are available.
 

Users who are viewing this thread

Back
Top Bottom