Skip to content

Instantly share code, notes, and snippets.

@macna
Created April 18, 2015 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macna/8e5e9fc3b4ad37ca1caf to your computer and use it in GitHub Desktop.
Save macna/8e5e9fc3b4ad37ca1caf to your computer and use it in GitHub Desktop.
A Microsoft Windows batch file for deleting files in a folder based on their file extension and age (.txt files older than 30 days in this example).
forfiles.exe -p C:\<your>\<folder> -m *.txt -d -30 -c "cmd.exe /C del @path""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment