Exemplo n.º 1
0
 public Entry CompareDirectories(string leftDirPath, string rightDirPath, CompareOptions options)
 {
     var dirEntry = new DirEntry { Left = new DirItem(leftDirPath), Right = new DirItem(rightDirPath) };
     dirEntry.Populate();
     dirEntry.Compare(FileComparerFactory.Create(options));
     return dirEntry;
 }