Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
xcopy date copying
Name: justy Date: June 19, 2003 at 07:16:47 Pacific OS: dos CPU/Ram: p4 2.4gb 512MB mem
Comment:
I'm Trying to copy files under dos from d: to c: using xcopy with the date switch (to only copy if newer) eg xcopy d:\clips\*.* c:\ /D /y from a dos window in 95/98/2000 this works but when booting fron a 95/98 boot disk it comes up with invalid parameter
Summary: I am looking to make a batch to copy all files that are 2 days old. Xcopy will copy using dates. How can I tell a batch file to look for dates of today -2 days? Any ideas? In other words today is 4/28...
Summary: Hello. I'm trying to write a batch file to purge files based on how old they are. The solution I've had recommended to me involves the following command: DIR \ | find /I "/" > del.log The code then u...
Summary: Try xcopy/? - it'll give you all the switches - works for all DOS commands. /A Copies files with the archive attribute set, doesn't change the attribute. /M Copies fi...