I am looking for a way to delete all files older than 7 days in an MS-DOS batch file. I've searched around the web, and found some examples with hundreds of lines of code, and others that required installing extra command line utilities to accomplish the task. Similar things can be done in BASH in just a couple lines of code. It seems that something at least remotely easy could be done for batch files in Windows. I'm looking for a solution that works in a standard Windows command prompt, without any extra utilities. Please no PowerShell or Cygwin either.
|
|
Enjoy:
See forfile documentation for more details. For more goodies refer to An A-Z Index of the Windows XP command line If you don't have forfiles installed on your machine, get it from Microsoft FTP server. Place it to C:\WINDOWS\system32\forfiles.exe Recent versions of Windows and Windows Server have it installed by default. Update Win7: Syntax has changed a little therefore the updated command is:
|
|||||||||||||||||||||
|
|
Run the following commands:
Move all the files via robocopy to another location, and then execute a delete command on that path and you're all good. |
||||
|
|
|
Have a look at my answer to a similar question:
This deletes files older than a given date. I'm sure it can be modified to go back seven days from the current date. update: I notice that HerbCSO has improved on the above script. I recommend using his version instead. |
||||
|
|
|
forfiles /p "v:" /s /m . /d -3 /c "cmd /c del @path" You should do /d -3 (3 days earlier) This works fine for me. So all the complicated batches could be in the trash bin. Also forfiles donn't suppurt unc paths, so make a network connection to a specific drive. |
|||
|
|
|
Ok was bored a bit and came up with this, which contains my version of a poor man's Linux epoch replacement limited for daily usage (no time retention): 7daysclean.cmd
__Usage__ set /a strip=day*7: Change 7 for the number of days to keep. set dSource=C:\temp: This is the starting directory to check for files. __Notes__ This is non-destructive code, it will display what would have happened. Change : if !epoch! LEQ %slice% (echo DELETE %%f ^(%%~tf^)) ELSE echo keep %%f ^(%%~tf^) to something like : if !epoch! LEQ %slice% del /f %%f so files actually get deleted february: is hard-coded to 28 days. Bisextile years is a hell to add, really. if someone has an idea that would not add 10 lines of code, go ahead and post so I add it to my code. epoch: I did not take time into consideration, as the need is to delete files older than a certain date, taking hours/minutes would have deleted files from a day that was meant for keeping. Did I mention I hate this editor's auto-formating? it removes the blank lines and the copy-paste is a hell. I hope this helps. |
||||
|
|
|
My command is forfiles -p"d:\logs" -s -m*.log -d-15 -c"cmd /c del @PATH\@FILE" @PATH - is just path in my case, so I had to use @PATH\@FILE also forfiles /? not working for me too, but forfiles (without "?") worked fine. And the only question I have: how to add multiple mask (for example ".log|.bak")? All this regarding forfiles.exe that I downloaded here: ftp://ftp.microsoft.com/ResKit/y2kfix/x86/ (on win XP) But if you are using windows server forfiles.exe should be already there and it is differs from ftp version... that is why I should modify command... For windows server 2003 I'm using this command: forfiles -p "d:\Backup" -s -m *.log -d -15 -c "cmd /c del @PATH" |
||||
|
|
|
Use forfiles. There are different versions. Early ones use unix style parameters. My version (for server 2000 - note no space after switches)-
To add forfiles to XP, get the exe from ftp://ftp.microsoft.com/ResKit/y2kfix/x86/ and add it to C:\WINDOWS\system32 |
|||||||
|
|
You might be able to pull this off. You can take a look at this question, for a simpler example. The complexity comes, when you start comparing the dates. It may be easy to tell if the date is greater or not, but there are many situations to consider if you need to actually get the difference between two dates. In other words - don't try to invent this, unless you really can't use the third party tools. |
|||
|
|
|
Copy this code and save it as DelOldFiles.vbs. USAGE ONLY IN COMMAND PROMPT: cscript DelOldFiles.vbs 15 15 means to delete files older than 15 days in past.
|
|||
|
|
|
How about these modifications on 7daysclean.cmd to take a leap year in account. It can be done in less than 10 lines of coding!
|
||||
|
|
|
|
|||
|
|
|
You're probably not going to find a totally non install solution short of a complicated bat file or windows script. I use delen, drop it in a system directory then use it like the regular del command in any bat file. |
|||
|
|
|
If you have the XP resource kit, you can use robocopy to move all the old directories into a single directory, then use rmdir to delete just that one:
|
|||
|
|
|
For Windows Server 2008 R2:
This will delete all .sql files older than 90 days. |
|||
|
|
|
IMO, JavaScript is gradually becoming a universal scripting standard: it is probably available in more products than any other scripting language (in Windows, it is available using the Windows Scripting Host). I have to clean out old files in lots of folders, so here is a JavaScript function to do that:
For each folder to clear, just add another call to the clearFolder() function. This particular code also preserves exe and dll files, and cleans up subfolders as well. |
|||
|
|
protected by Community♦ Sep 7 '11 at 15:52
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

