Click here to Skip to main content
15,885,126 members
Articles / Desktop Programming / MFC
Article

Backup Utility in C#

Rate me:
Please Sign up or sign in to vote.
2.79/5 (14 votes)
4 Aug 2003 137.2K   9.8K   77   7
A utility to backup directories and stick a datestamp on the folder, and remove folders older than N days, where N is configurable.

Sample Image - backup.gif

Introduction

During a development project, I realized I needed something to backup my solutions every night, and be tagged with a date stamp. I looked around the Net for some DOS utilities but none really fitted the bill as far as what I was looking for. Eventually, I decided to just code it. Turned out to be super simple in C#.

Goal

My goal was to backup my solution from a source folder (e.g. C:\Data) to a backup folder (e.g. C:\Backup\Data_080403). I also wanted to only keep N number of days of backups and not let my backup folder grow infinitely. So, for instance, I wanted to keep 30 days worth of backups at most. So, whenever, any files older than 30 days were discovered, I wanted the system to delete them automatically.

Solution

I used the System.IO's Directory and DirectoryInfo classes to create folders, delete folders, and wrote a method to recursively copy folders from one location to the next. I utilized the DirectoryInfo class to figure out how old a given folder was, in order to delete it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNice. Yet it doesn't work twice on the same day Pin
Yaron Dan-Goor21-Mar-11 6:50
Yaron Dan-Goor21-Mar-11 6:50 
It should use full date format which includes the hour and minute.
GeneralUse Path.DirectorySeparatorChar Pin
codekamfung14-Apr-04 23:13
codekamfung14-Apr-04 23:13 
GeneralRe: Use Path.DirectorySeparatorChar Pin
Anonymous8-Oct-04 9:02
Anonymous8-Oct-04 9:02 
GeneralRe: Use Path.DirectorySeparatorChar Pin
justsml12-Dec-04 10:34
justsml12-Dec-04 10:34 
GeneralPVCS systems Pin
Håkan Nilsson (k)6-Aug-03 4:48
Håkan Nilsson (k)6-Aug-03 4:48 
GeneralRe: PVCS systems Pin
M C15-Jul-10 10:00
M C15-Jul-10 10:00 
GeneralSuggestions Pin
Gunmen5-Aug-03 23:13
Gunmen5-Aug-03 23:13 

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

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