2016-12-14

CMD - Howto delete files older than N days

Windows XP:
forfiles -p "C:\what\ever" -s -m *.* -d <number of days> -c "cmd /c del @path"

Ab Windows 7:
forfiles -p "C:\what\ever" -s -m *.* /D -<number of days> /C "cmd /c del @path"

No comments:

Post a Comment