5,699,997 members and growing! (15,682 online)
Email Password   helpLost your password?
Desktop Development » Files and Folders » File System     Intermediate

FolderSync class for .NET

By kratchkov

A set of classes which can get differences between two folders and which can synchronize them according to basic rules
C#Windows, .NET, .NET 1.0, Win2K, WinXPVS.NET2002, Visual Studio, Dev

Posted: 14 Jun 2004
Updated: 26 Jun 2004
Views: 48,650
Bookmarked: 42 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
8 votes for this Article.
Popularity: 3.31 Rating: 3.67 out of 5
0 votes, 0.0%
1
1 vote, 12.5%
2
0 votes, 0.0%
3
5 votes, 62.5%
4
2 votes, 25.0%
5

What this is about?

The first class, FolderDiff , gets differences between files in a folder and in all subfolders and raises an event for each file. It looks for different file sizes and missing files or folders.

The second class, FolderSync , uses the events raised by the first one and reacts as defined by a default behavior.

Additionally, there is a class which copies directories recursively. It's used by FolderSync to copy missing folders.

Why?

There are maybe many reasons to have a program to synchronize two folders. It's possible to use it as a very simple backup program, to avoid needing to copy all data on every backup. A little like a incremental backup. You may also find it useful if you have a portable MP3 or OGG (Yes! Ogg Vorbis! It's free !!!! OpenSource rules !!!) player. You can create a mirror of the player on your disk and then synchronize instead of always making the same changes in both places.

How?

The three classes, FolderDiff, FolderSync, RecursiveCopy, are in the FolderSynchronisation namespace. To get the differences between two folders:

void GetDifferencies()
{
  FolderDiff fDiff = new FolderDiff(@"C:\folder1", @"C:\folder2");
  fDiff.CompareEvent += new FolderSynchronisation.CompareDelegate(Compared); 
      // The event raised for each file

  fDiff.Compare(); // Starts comparing

}
      
private void Compared(ComparisonResult result, 
  System.IO.FileSystemInfo[] sysInfo, bool isAFolder)
{
  // result is the result of the comparison

  // sysInfo are the two FileSystemInfo for the concerned files or folders

  //  As you can see, I do not use FileInfo objects because

  //  it wouldn't work with folders. 

  // isAFolder is true when sysInfo are folders

  //  With this, you can know if it's possible to convert 

  // sysInfo to either System.IO.DirectoryInfo

  //  or to System.IO.FileInfo.

  
  // The differencies may then be listed in listboxes, as in the example app.

}

To synchronize two folders you must first specify the default actions for:

  • Files with different sizes
  • Files or folders missing in the first folder
  • Files or folders missing in the second folder
Like this for example:
FileActions defSize = FileActions.OverwriteNewer;
FileActions defMissing1 = FileActions.Ask;
FileActions defMissing2 = FileActions.Ignore;
Then you have to create the FolderSync:
FolderSync fSync = new FolderSync(@"C:\Folder1", @"C:\Folder2", 
  defMissing2, defMissing1, defSize);
Then you need to catch the events:
fSync.AskWhatToDo += 
 new FolderSynchronisation.AskWhatToDoDelegate(
 AskUserEvent_Handler);
  // This event is raised when the defaultAction is 

  // set to FileActions.Ask and

  // the user must be asked what to do

  
fSync.ErrorEvent += new FolderSynchronisation.ErrorDelegate(
  ErrorEvent_Handler);
  // This is raised when an error somewhere occurs (

  // Which is never the case, since errors

  // do not exist, isn't it?)
To catch these events:
private void ErrorEvent_Handler(Exception e, string[] fileNames)
{
  // e contains the thrown exception, and fileNames are 

  // the two files which were compared,

  // copied or whatever

  MessageBox.Show("Exception " + e.Message +
    " was thrown.\nAdditional Data:\n" 
    + fileNames[0] + "\n" + fileNames[1],"Exception",
    MessageBoxButtons.OK, MessageBoxIcon.Error);
}

private FileActions AskUserEvent_Handler(
  System.IO.FileSystemInfo[] files, bool isADir,
   int missingIndex)
{
  // This is my implementation in the example app to 

  // let the user choose the action.

  // It creates and displays another form which shows 

  // the two files and possbile choices

  
  // missingIndex is either -1 if the files have different sizes, 

  // or 1 or 2 to specify in

  // which folder the files are missing.

  
  AskActionForm askForm = new AskActionForm(files, isADir, missingIndex);
  
  askForm.ShowDialog(this); // this shows the askForm 

          // on owner this, the active form

  return askForm.DialogResult; // returns the user choice 

         // to the caller, which is fSync

}
Finally, the Sync() method must be called to start the synchronisation.
fSync.Sync();

What else?

The first version of this program (which will never be published, because that's some kind of things I prefer you not to know about...) never really worked and had a horrible structure. Its FolderDiff class only scanned one dir which rendered it unable to find missing folders in this dir. When I saw what was necessary to correct those errors, I decided to begin from scratch, which became this code.

When?

I really don't remember how long the coding has taken, so here are the release dates (just one for now):

  • June 13th 2004 - First version

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

About the Author

kratchkov


I left the Microsoft world, and am now working with linux and a BSD. This switch was a big relief, mostly for my keyboard, which doesn't get slammed again.

A big thank you to those who helped me with their good articles.
Location: Switzerland Switzerland

Other popular Files and Folders articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
GeneralThank you!memberAzzola Andrea0:44 28 Mar '08  
GeneralSyncing efficientlymemberPaul Carroll23:34 24 Jul '06  
GeneralCreating a one-touch automatic syncmemberJacob Slusser20:05 2 Jul '04  
GeneralRe: Creating a one-touch automatic syncmemberkratchkov4:33 3 Jul '04  
GeneralModified file but same sizememberTonyRMarshall2:36 1 Jul '04  
GeneralRe: Modified file but same sizememberkratchkov4:56 1 Jul '04  
GeneralRe: Modified file but same sizememberJeffrey Scott Flesher16:47 1 Jul '04  
GeneralRe: Modified file but same sizememberkratchkov4:39 3 Jul '04  
GeneralRe: Modified file but same sizememberJudah Himango6:35 29 May '07  
GeneralRe: Modified file but same sizememberGary Wolfe6:45 23 Aug '04  
GeneralRe: Modified file but same sizememberkratchkov10:38 1 Sep '04  
GeneralRe: Modified file but same sizememberGary Wolfe15:56 1 Sep '04  
GeneralRe: Modified file but same sizememberkratchkov7:57 3 Sep '04  
GeneralRe: Modified file but same sizesussAnonymous0:30 2 Oct '05  
Generalnetwork sharememberjcmag2:49 15 Jun '04  
GeneralRe: network sharememberkratchkov10:04 15 Jun '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 26 Jun 2004
Editor: Nishant Sivakumar
Copyright 2004 by kratchkov
Everything else Copyright © CodeProject, 1999-2008
Web12 | Advertise on the Code Project