Command Line Log File Archiver

A command line utility to archive log files from a given directory to a new directory based upon their creation dates.

Usage

Log File Directory Archiver
flipbit.co.uk

Moves files to a subdirectory based upon their creation date.

Useage:

   logarc.exe [mask] [options]

Options:

   -c       Continue on errors
   -whatif  Just show new filenames, don't copy

Example Output

C:\>logarc *.log -whatif

iis-log1.log => \2009\09\26\iis-log1.log
iis-log2.log => \2009\09\27\iis-log2.log
iis-log3.log => \2009\09\28\iis-log3.log
iis-log4.log => \2009\09\29\iis-log4.log

C:\>

Back