Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between two List<FileInfo>

Can I use a fancy LINQ query to return a List<FileInfo>, by passing it in a method (List<FileInfo> oldList, List<FileInfo> newList), and seeing what differences there are between the two lists?

Basically, I want to get a list of any files added to newList, that were not available in oldList.

like image 635
Craig Avatar asked May 15 '11 09:05

Craig


1 Answers

Given an IEqualityComparer for FileInfo shown below:

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

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

You can use following code to find the difference between two lists:

var allItems = newList.Union(oldList);
var commonItems = newList.Intersect(oldList);
var difference = allItems.Except(commonItems, new FileInfoEqualityComparer());

To find items added to newList list, use following code:

var addedItems = newList.Except(oldList, new FileInfoEqualityComparer());
like image 162
decyclone Avatar answered Oct 19 '22 23:10

decyclone