Patched the rename detection function and had some debug output placed in the FileManager form.
This commit is contained in:
@@ -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 });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user