Delete Old Files

A simple command line utility to selectively delete files older than a number of days or a specific date.

Usage

Delete After - File Deleter
flipbit.co.uk

Delete files older than a given date.

Usage:

   delafter.exe [mask] [options]

Options:

   -days [number]   Delete files older than the specified number of days
   -after [date]    Delete files older than the specified date
   -s               Process subdirectories
   -c               Continue on errors
   -whatif          Just show files to be deleted

Example Output

C:\>delafter.exe *.* -days 1 -s -whatif

C:\DelAfter.exe
C:\DelAfter.pdb
C:\Flipbit.Core.dll
C:\Flipbit.Core.pdb
Would of deleted 4 file(s).

C:\>

Back