How to remove files/folders older than x days on windows from command prompt?

link|improve this question

62% accept rate
Install cygwin then ask the same question, but for Linux instead... – ring0 Jan 13 '11 at 14:43
feedback

1 Answer

up vote 2 down vote accepted

You could use forfiles in Windows 2003, Vista and Seven, for example for deleting files older than 3 days :

Forfiles -p "<path>" -s -m *.* -d -3 -c "Cmd /C del @FILE" 

or you can do the same thing with powershell :

http://www.networknet.nl/apps/wp/published/powershell-delete-files-older-than-x-days

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.