Click here to Skip to main content
15,881,898 members
Articles / Programming Languages / C#
Article

Duplicate Files Finder

Rate me:
Please Sign up or sign in to vote.
4.92/5 (50 votes)
15 Dec 2008CPOL2 min read 213.6K   11.9K   138   80
A utility to find any duplicate file in your hard drives using MD5 hashing.

DuplicateFinder.old.jpg

Search results

DuplicateFinder_deleted.JPG

File deleted

Introduction

Once a year, I do that terrific job of cleaning files I created or downloaded on my drives. The last time I tried to do it, it was such a fastidious task that I thought of doing that thing semi-automatically. I needed some free utility that could find duplicate files, but I found none that corresponded to my needs. I decided to write one.

Background

The CRC calculation method is available here. I use the MD5 hashing provided by the standard libraries. I added an event to the MD5 computing method so as to get a hashing progression, it is a thread that reads the stream position while the MD5 computing method is reading the same stream.

Using the code

The utility uses two main classes, DirectoryCrawler and Comparers. The use is obvious :) Please notice that instead of iterating through a list list.count X list.count times, DuplicateFinder uses a Hashtable that contains the pair <size,count>. Once populated, all files with count =1 will be removed: (Very much faster!!!!)

C#
int len = filesToCompare.Length;
List<long> alIdx = new List<long>();
System.Collections.Hashtable HLengths = new System.Collections.Hashtable();
foreach (FileInfo fileInfo in filesToCompare)
{
    if (!HLengths.Contains(fileInfo.Length))
        HLengths.Add(fileInfo.Length, 1);
    else
        HLengths[fileInfo.Length] = (int)HLengths[fileInfo.Length] + 1;
}
foreach (DictionaryEntry hash in HLengths)
    if ((int)hash.Value == 1)
    {                    
        alIdx.Add((long)hash.Key);
        setText(stsMain, string.Format("Will remove File with size {0}", hash.Key));
    }
FileInfo[] fiZ = new FileInfo[len - alIdx.Count];
int j = 0;
for (int i = 0; i < len; i++)
{
    if (!alIdx.Contains(filesToCompare[i].Length))
        fiZ[j++] = filesToCompare[i];
}
return fiZ;

Points of interest

  • (Done) Optimizes file moving, UI may be unresponsive while moving big files :(.
  • (Useless, my MD5 is better ^_^) Add options to choose between CRC32 and MD5 hashing.
  • Maybe use an XML configuration file. At this time, moving duplicate files to D:\DuplicateFiles (which is hard coded, viva Microsoft!) and skipping that folder during scanning is sufficient to me.
  • Don't forget that your posts make POIs.
  • (Done): Code an event enabled MD5 hashing class that would report hashing progression, imagine hashing a 10 GB file!

History

  • v0.2
    • Optimized duplicates retrieving (duplicate sizes and duplicate hashes).
    • Added Move to Recycle Bin.
    • Added file size criteria.
    • Files to delete info updated for every check/uncheck in listview.
    • Added colors and fonts to UI.
    • Debug enabled sources (#if DEBUG synchronous #else threaded).
    • Added List<Fileinfo> and List<string[]> instead of using array lists.
    • MD5 hashing is used instead of CRC32 (supercat9).
    • Added Skip Source Folder option.
    • Added Drop SubFolder.
    • Some optimizations...
  • v0.1
    • First time publishing. Waiting for bug reports :)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
Morocco Morocco
in his studies, erratum discovered c/c++.he appreciated it.
when he met oracle products, in his job, he fell in love.
he uses c# .net & ms sql.

he created a "f.r.i.e.n.d.s" like soap movie, melting all of the above.
went back in the university.
after he took courses of artificial vision & imagery, he finished his studies with a successful license plate recognition project.

Comments and Discussions

 
GeneralContextSwitchDeadlock was detected Pin
ToothRobber22-Apr-10 4:45
professionalToothRobber22-Apr-10 4:45 
GeneralMissing ConsoleTestRestorer & Restorer Pin
Shiku-578414-Apr-10 4:20
professionalShiku-578414-Apr-10 4:20 
GeneralRe: Missing ConsoleTestRestorer & Restorer Pin
k2ox27-Nov-10 7:06
k2ox27-Nov-10 7:06 
GeneralDuplicate File Finder , Name Finder , Zero Lenght etc Pin
stixoffire22-Dec-08 21:25
stixoffire22-Dec-08 21:25 
GeneralRe: Duplicate File Finder , Name Finder , Zero Lenght etc Pin
eRRaTuM23-Dec-08 2:37
eRRaTuM23-Dec-08 2:37 
GeneralRe: Duplicate File Finder , Name Finder , Zero Lenght etc Pin
Booya10014-Jan-09 12:35
Booya10014-Jan-09 12:35 
AnswerRe: Duplicate File Finder , Name Finder , Zero Lenght etc Pin
eRRaTuM14-Jan-09 14:42
eRRaTuM14-Jan-09 14:42 
GeneralMy vote of 5. Pin
Tiep Le22-Dec-08 17:03
Tiep Le22-Dec-08 17:03 
Big thanks to u! Your project is great! I love it Smile | :)

Impossible = I'm possible!

GeneralRe: My vote of 5. Pin
eRRaTuM23-Dec-08 2:51
eRRaTuM23-Dec-08 2:51 
GeneralDuplicate Files Finder. MD5 Encryption Pin
Henry Minute15-Dec-08 5:20
Henry Minute15-Dec-08 5:20 
GeneralRe: Duplicate Files Finder. MD5 Encryption Pin
eRRaTuM23-Dec-08 2:49
eRRaTuM23-Dec-08 2:49 
GeneralHardcoded path causes RTE Pin
At Nel14-Dec-08 17:43
At Nel14-Dec-08 17:43 
GeneralRe: Hardcoded path causes RTE Pin
eRRaTuM15-Dec-08 3:15
eRRaTuM15-Dec-08 3:15 
Questionthread exception ! any solution?? Pin
Member 551477514-Dec-08 10:40
Member 551477514-Dec-08 10:40 
AnswerRe: thread exception ! any solution?? Pin
eRRaTuM15-Dec-08 3:31
eRRaTuM15-Dec-08 3:31 
GeneralI like it Pin
Xcalllibur12-Nov-08 17:12
Xcalllibur12-Nov-08 17:12 
GeneralRe: I like it Pin
eRRaTuM17-Nov-08 1:52
eRRaTuM17-Nov-08 1:52 
GeneralDuplicate FIle Name finder Pin
pyrodood9-Sep-08 5:17
pyrodood9-Sep-08 5:17 
AnswerRe: Duplicate FIle Name finder Pin
eRRaTuM15-Sep-08 16:25
eRRaTuM15-Sep-08 16:25 
GeneralRe: Duplicate FIle Name finder [modified] Pin
pyrodood16-Sep-08 4:43
pyrodood16-Sep-08 4:43 
GeneralRe: Duplicate FIle Name finder Pin
supercat915-Dec-08 6:29
supercat915-Dec-08 6:29 
GeneralRe: Duplicate FIle Name finder Pin
pyrodood15-Dec-08 7:18
pyrodood15-Dec-08 7:18 
GeneralGreat article Pin
Aamer Alduais1-Sep-08 9:09
Aamer Alduais1-Sep-08 9:09 
AnswerRe: Great article Pin
eRRaTuM15-Sep-08 16:34
eRRaTuM15-Sep-08 16:34 
GeneralRe: Great article Pin
Aamer Alduais19-Sep-08 9:01
Aamer Alduais19-Sep-08 9:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.