Patched the rename detection function and had some debug output placed in the FileManager form.

This commit is contained in:
Admin
2020-12-16 15:34:42 -06:00
parent 95766b044f
commit d554a31051
5 changed files with 45 additions and 23 deletions
+4 -1
View File
@@ -265,7 +265,10 @@ namespace DataOrganizer
foreach(var f in b.Files.Values)
{
if (file.Size == f.Size && file.CreatedDate == f.CreatedDate && file.ModifiedDate == f.ModifiedDate)
renames.Add(new SnapshotComparsion.RenamedFile() { From = file, To = f });
{
if(f.Name != file.Name)
renames.Add(new SnapshotComparsion.RenamedFile() { From = file, To = f });
}
}
}