2using System.Collections.Generic;
5using System.Threading.Tasks;
void ClearDuplicateFiles()
Method deletes all the data relating to duplicate files found.
void FindDuplicateFiles(string dir)
Method searches recursively to find duplicated files.
void HashIndividualFile(string filePath)
Method hashes an individual file.
void ExportDuplicateFiles()
Method exports the duplicate data in the same format as DisplayDuplicateFiles.
void DisplayDuplicateFiles()
Methods displays the duplicate files found including the original path.
void VerifyDuplicateFiles()
Method verifies that the files are in fact duplicates. This is needed as different files might create...
void ExportDuplicateFiles(string filePath)
Method exports the duplicate data in the same format as DisplayDuplicateFiles.