Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

FuliggineBackupper

0.00/5 (No votes)
16 Jun 2006 1  
A useful backup manager
Sample Image - FuliggineBackupper.png

Index

Introduction

How may times have you lost all the data from your hard disk?

I'm sure that, to prevent any loss of data, you periodically copy some of your most important folders and files. You would agree with me that if the number of projects and folders are large, this isn't easy. In fact, it's a little hard to manually backup some of your data every day and remember where the backup copies are.

Some time ago, I lost some important data from my HD, so I started writing a simple application which manages backups.

My first idea was to build a program that manages different projects to let me associate multiple files together.
The second fact is that a project may contain both files and folders. So in my program, I defined a class called ITEM, which can be a file or a folder.
After that, I allowed the program to compress all the ITEMS in a single zip file named with the current date/time. All the zip files from the same project are stored in the same folder using the project name. To do this, I use a freeware library called ICSharpCode.SharpZipLib.dll.
After that, I synchronize this entire feature in a simple and cool interface.
All the images are loaded at runtime to allow you to change it without re-building the executable and to allow to change icons sets.

Back to Index

Help

First of all, you must create a project in which you can add as many items as you want. To do this, you simply click the Add Project button (the one with the icon with a box and a plus). This window will appear:

Please enter a name (not null) and press OK. After that, add the items by clicking the add item button (the one with the book and plus).
This window will appear:

You can choose more than one file or choose an entire folder. All the sub-folders and their files will be included.

Remember to save your project before closing the application (if you want that).
You can choose more than one file or choose a folder. All the sub-folders and their files will be included. Remember to save your project before closing the application (if you want that).
You can choose to backup one single project or the entire project. You can simply open the backup's folder clicking on the bank button.

IMPORTANT: This program uses a folder on the C drive called temp_Backupper. All the data in this folder is temporary and will be deleted after the backupper completes execution.

Back to Index

Source Code

All the features are handled by the Project manager control. Look at the source code for more information. In the next few days, I will explain the code line by line, but for now the comments in the code should be sufficient.

Back to Index

Credits

This is only one of the possible solutions. Maybe it isn't the best, but I think that it's simple and fast. For any advice, questions or problems please contact me. If you would like to see my other work, please visit my home page.

Back to Index

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