Click here to Skip to main content
Licence CPOL
First Posted 20 Mar 2009
Views 7,443
Downloads 82
Bookmarked 13 times

Log File Cleanup App for Windows

By | 20 Mar 2009 | Article
An app written in C# .NET to clean up old log files from Windows directories

Introduction

This is a small application written in C# .NET that can delete files from any Windows directory. It is a command line tool that can be run via a batch file (included in the Debug directory of the project).

Background

The basic idea of this tool is to clean up old files that keep on lingering on in the system especially log files. The tool accepts *.txt/*.log/*.zip inputs and deletes them from the specified folder. The age of the files can also be supplied as a parameter to the tool. 

Using the Code

The tool can be used by writing the following lines in a batch file:

rem the format for the arguments to be passed to the logCleanup.exe is as follows
rem 1. path of the folder (enclosed within double quotes / replace all '/' with '//')
rem 2. number of days e.g: 10
rem 3. extension of files to be deleted. limited only to txt / log / zip
rem 4. mode. limited to top / all. top-deletes files in that directory only. 
				all-deletes files in all subdirectories too.
logCleanup.exe "C:\\temp" 30 txt top
rem pause  

The logCleanup.exe file is generated by compiling the following code segment:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace logCleanup
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] sFiles = { };
            string sFileName = "";
            int iCount = 0;
            if ("txt" != args[2].ToString() && "log" != args[2].ToString() && 
						"zip" != args[2].ToString())
            {
                Console.WriteLine("Only zip, txt and log files can be deleted");
                Console.Read();
                return;
            }
            if (Directory.Exists(args[0].ToString()))
                if ("top" == args[3].ToString())
                    sFiles = Directory.GetFiles(args[0].ToString(), 
			"*."+args[2].ToString(), SearchOption.TopDirectoryOnly);
                else if ("all" == args[3].ToString())
                    sFiles = Directory.GetFiles(args[0].ToString(), 
			"*." + args[2].ToString(), SearchOption.AllDirectories);

            Console.WriteLine("Total Files Parsed: " + sFiles.Length);
            for (iCount = 0; iCount < sFiles.Length; iCount++)
            {
                sFileName = sFiles.GetValue(iCount).ToString();
                if (1 == DateTime.Compare(DateTime.Now, 
		File.GetCreationTime(sFileName).AddDays(Convert.ToDouble(args[1]))))
                {
                    Console.WriteLine("File Deleted: " + sFileName);
                    File.Delete(sFileName);
                }
            }
        }
    }
}	

Points of Interest

This code currently only works with the Date of Creation of a file. It can easily be modified to use the Last Updated time, etc.

History

  • Initial version 0.0

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

karanmalhotra86



India India

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
General[My vote of 2] Coding oddities PinmemberJohn Brett6:05 24 Mar '09  
GeneralCCleaner Pinmemberthund3rstruck10:17 20 Mar '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 20 Mar 2009
Article Copyright 2009 by karanmalhotra86
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid