Is there an EASY way to copy an entire folder's contents and EVERYTHING within it's Sub folder ONLY if the file is NEWER or UPdated ??
I can do this with one line using:
Would this still be the simplest way ? And YES, I do need all of those switches....
I'd be more than happy to utilize an fso. option if I can do it in a couple lines... I'd like to keep things in VBS as much as possible these days.
-SWarrior
I can do this with one line using:
Code:
wshshell.run("cmd /c xcopy "D:\Path1\Path2\*.*" "Z:\Path1\" /d /s /e /q /h /r /o /x /y /c",1,true)
I'd be more than happy to utilize an fso. option if I can do it in a couple lines... I'd like to keep things in VBS as much as possible these days.
-SWarrior