Ну, так используйте в таком случае «forfiles.exe»:
Цитата:
/d [{+|-}][{<Date>|<Days>}]
…
Selects files with a last modified date later than or equal to (+) the current date plus the number of days specified, or earlier than or equal to (-) the current date minus the number of days specified.
|
В примерах:
Цитата:
To list all of the files in the current directory that are at least one year old, type:
Код:
forfiles /s /m *.* /d -365 /c "cmd /c echo @file is at least one year old."
|
У Вас будет не «-365», а «-5», «-50», «-500».