Click here to Skip to main content
15,867,568 members
Articles / Programming Languages / C#
Tip/Trick

IEqualityComparer<FileInfo> using MD5 Hash

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
28 May 2018CPOL1 min read 12.1K   6   5
The presented code snippet compares two given files using the IEqualityComparer.

Introduction

The presented code snippet compares two given files using the IEqualityComparer.

The comparison does the following:

- Use the FileInfo's equality operator (==) to try to determine whether these are the same instances of the FileInfo class
- If one of the objects is null, they can't represent the same files, thus false is returned
- If the file path is for both objects the same, true is returned since the file must be the same
- If the file sizes differ, the files can't be the same either thus false is returned
- And at the end we resort to comparing the MD5 hash of both files.

Please keep in mind that MD5 hashing is an expensive operation, which is not suitable for comparing a lot of files or large files. The code presented here was initally intended to be used within an integration test. If you need to compare a lot of files (or very large ones) you may resort to your own implementation - You may want to start by reading this stackoverflow discussion, though.

Background

Please keep in mind that this implementation reads the file contents into the memory to create the MD5 for each file. If you're trying to compare very large files, this may slow down your application considerably.

The code

C#
/// <summary>
/// An <see cref="IEqualityComparer{T}"/> for files using <see cref="FileInfo"/>
/// </summary>
public class FileMd5EqualityComparer : IEqualityComparer<FileInfo>
{
    /// <summary>
    /// See <see cref="IEqualityComparer{T}.Equals(T, T)"/>
    /// </summary>
    public bool Equals(FileInfo x, FileInfo y)
    {
        // Use basic comparison
        if(x == y)
        {
            return true;
        }

        // if one of both parameters is null, they can't be
        // the same - Except both are null, but this case is
        // handled above.
        if(x == null || y == null)
        {
            return false;
        }

        // If both file paths are the same, the
        // files must be the same.
        if(x.FullName == y.FullName)
        {
            return true;
        }

        // The files can't be equal if they don't
        // have the same size
        if(x.Length != y.Length)
        {
            return false;
        }

        // At last, compare the MD5 of the files.
        var md5X = GetMd5(x.FullName);
        var md5Y = GetMd5(y.FullName);

        return md5X == md5Y;
    }

    /// <summary>
    /// See <see cref="IEqualityComparer{T}.Equals(T, T)"/>
    /// </summary>
    public int GetHashCode(FileInfo obj)
    {
        return obj.GetHashCode();
    }

    /// <summary>
    /// Returns the MD5 of the file at <paramref name="filePath"/>
    /// as string
    /// </summary>
    private string GetMd5(string filePath)
    {
        using (var md5 = MD5.Create())
        {
            using (var stream = File.OpenRead(filePath))
            {
                return Encoding.Default.GetString(md5.ComputeHash(stream));
            }
        }
    }
}

History

2018-05-25 Initial version

License

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


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

Comments and Discussions

 
QuestionGetHashCode for object equality comparison Pin
Member 95112430-May-18 4:23
Member 95112430-May-18 4:23 
QuestionWhy determine hash... Pin
User 1106097925-May-18 12:43
User 1106097925-May-18 12:43 
AnswerRe: Why determine hash... Pin
Marco Bertschi28-May-18 4:19
protectorMarco Bertschi28-May-18 4:19 
Suggestionmd5 is expanciv and slow in this special case ! Pin
Peter BCKR25-May-18 2:18
Peter BCKR25-May-18 2:18 
GeneralRe: md5 is expanciv and slow in this special case ! Pin
Marco Bertschi28-May-18 4:18
protectorMarco Bertschi28-May-18 4:18 

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.