Duplicate File Locator 1.0
Loading...
Searching...
No Matches
IDuplicateFileLocator.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
8{
9 public interface IDuplicateFileLocator
10 {
11 #region Methods
12
19 void FindDuplicateFiles(string dir);
20
26
31
36
41
48 void ExportDuplicateFiles(string filePath);
49
56 void HashIndividualFile(string filePath);
57
58 #endregion
59 }
60}
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.