|
Duplicate File Locator 1.0
|
The Purpose of this project is to help find duplicate images within your directories. This is done recursively through your directories.
The algorithm gets a list of all the file paths for your images, gets the bitmap data then hashes it. These hashes are then compared to each other. Each time you hash a new file, it is checked to see if it's contained within the known hashes array. If it is found then you have a duplicated hash. If not, it's added to the known hashes array.
At the end you'll have an array of hashes with no duplicates and a structured array of file paths to duplicate files.