Any example of windows xp dos script(.bat) that when run will iterate all subdirectories and list all files that have date updated since yesterday time?
Asked
Active
Viewed 1,819 times
1 Answers
1
This should get you pretty close to what you need. I pipe this to a txt file called dir.txt on my desktop.
@echo off
XCOPY * "%TEMP%" /H /L /S /Y /D:10-06-2011 >> "C:\Users\Greg\Desktop\dir.txt"
The /L switch is important because that tells you what files would be copied.

GregD
- 8,713
- 1
- 24
- 36
-
but i do not need to copy files. i only need to list the files since 10-06-2011 – user41999 Oct 10 '11 at 01:06
-
This won't copy files if you use the /L switch...it will only tell you what it would copy. – GregD Oct 10 '11 at 01:37