I am just learning C# (have been fiddling with it for about 2 days now) and I've decided that, for leaning purposes, I will rebuild an old app I made in VB6 for syncing files (generally across a network).

When I wrote the code in VB 6, it worked approximately like this:

  1. Create a Scripting.FileSystemObject
  2. Create directory objects for the source and destination
  3. Create file listing objects for the source and destination
  4. Iterate through the source object, and check to see if it exists in the destination
    • if not, create it
    • if so, check to see if the source version is newer/larger, and if so, overwrite the other

So far, this is what I have. Also, if I'm making any horribly retarded mistakes, please let me know, as I am a total scrub at this point.

private bool syncFiles(string sourcePath, string destPath) {
    DirectoryInfo source = new DirectoryInfo(sourcePath);
    DirectoryInfo dest = new DirectoryInfo(destPath);

    if (!source.Exists) {
        LogLine("Source Folder Not Found!");
        return false;
    }

    if (!dest.Exists) {
        LogLine("Destination Folder Not Found!");
        return false;
    }

    FileInfo[] sourceFiles = source.GetFiles();
    FileInfo[] destFiles = dest.GetFiles();

    foreach (FileInfo file in sourceFiles) {
        // check exists on file
    }

    if (optRecursive.Checked) {
        foreach (DirectoryInfo subDir in source.GetDirectories()) {
            // create-if-not-exists destination subdirectory
            syncFiles(sourcePath + subDir.Name, destPath + subDir.Name);
        }
    }
    return true;
}

I have read examples that seem to advocate using the FileInfo or DirectoryInfo objects to do checks with the "Exists" property, but I am specifically looking for a way to search an existing collection/list of files, and not live checks to the file system for each file, since I will be doing so across the network and constantly going back to a multi-thousand-file directory is slow slow slow.

Thanks in Advance.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

The GetFiles() method will only get you files that does exist. It doesn't make up random files that doesn't exist. So all you have to do is to check if it exists in the other list.

Something in the lines of this could work:

var sourceFiles = source.GetFiles();
var destFiles = dest.GetFiles();

foreach (var file in sourceFiles)
{
    if(!destFiles.Any(x => x.Name == file.Name))
    {
        // Do whatever
    }
}

Note: You have of course no guarantee that something hasn't changed after you have done the calls to GetFiles(). For example, a file could have been deleted or renamed if you try to copy it later.


Could perhaps be done nicer somehow by using the Except method or something similar. For example something like this:

var sourceFiles = source.GetFiles();
var destFiles = dest.GetFiles();

var sourceFilesMissingInDestination = sourceFiles.Except(destFiles, new FileNameComparer());

foreach (var file in sourceFilesMissingInDestination)
{
    // Do whatever
}

Where the FileNameComparer is implemented like so:

public class FileNameComparer : IEqualityComparer<FileInfo>
{
    public bool Equals(FileInfo x, FileInfo y)
    {
        return Equals(x.Name, y.Name);
    }


    public int GetHashCode(FileInfo obj)
    {
        return obj.Name.GetHashCode();
    }
}

Untested though :p

link|improve this answer
4  
Also for the sub directories use Path.Combine(sourcePath,subDir.Name) instead of sourcePath + subDir.Name – astander Dec 6 '09 at 11:11
Also have a look at the GetFileSystemInfos method: msdn.microsoft.com/en-us/library/… – Svish Dec 6 '09 at 11:15
As to your note: I understand, but it's a risk I'm taking, frontloading the operation of getting the file list so I don't have to do individual exists checks on umpteen-thousand files. Thanks very much for your answer, I'm off to check out the syntax of "Any"! – Dereleased Dec 6 '09 at 11:19
It's faster to get all destination files from a DirectoryInfo. Don't call Exists on all your destination files, but do check if file open calls succeed because files can be deleted or renamed, just like Svish explained. – Sebastiaan Megens Dec 6 '09 at 11:19
@Martinho: That is a great idea. Was trying to come up with something clever like that, but my brain just failed me :p – Svish Dec 6 '09 at 11:21
show 1 more comment
feedback

One little detail, instead of

 sourcePath + subDir.Name

I would use

 System.IO.Path.Combine(sourcePath, subDir.Name)

Path does reliable, OS independent operations on file- and foldernames.

Also I notice optRecursive.Checked popping out of nowhere. As a matter of good design, make that a parameter:

bool syncFiles(string sourcePath, string destPath, bool checkRecursive)

And since you mention it may be used for large numbers of files, keep an eye out for .NET 4, it has an IEnumerable replacement for GetFiles() that will let you process this in a streaming fashion.

link|improve this answer
+1, thanks for this advice! – Dereleased Dec 6 '09 at 11:19
+1 for noting "And since you mention it may be used for large numbers of files, keep an eye out for .NET 4, it has an IEnumerable replacement for GetFiles() that will let you process this in a streaming fashion." – sehe Mar 23 '11 at 20:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.