HuyPV
Monday, September 21, 2009
' Copy a Set of Files
Const OverwriteExisting = TRUE
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.CopyFile "C:\FSO\*.txt" , "D:\Archive\" , OverwriteExisting
Title:
Copy a set of files
Description:
' Copy a Set of Files Const OverwriteExisting = TRUE Set objFSO = CreateObject("Scripting.FileSystemObject") objFSO.CopyFile ...
...
Rating:
4