imgdupfinder is a tool to find duplicate images. Its written in golang. Currently it support following image formats 'png' and 'jpg/jpeg' .
- Recursive searching.
$ ./dupimgfinder -rootpath string
Root folder full path.
-recursive
Recursive search in subfolders. Default is false.
-filenamematch
Search result should match file name. Default is true.
Note: If '-rootpath' is not provided it will take the current directory as rootfolder.
Finds the duplicate images in the current folder without looking into subfolders and the filename should also be the same.
$ ./dupimgfinder
Finds the duplicate images from root folder recursively checking the subfolders.
$ ./dupimgfinder --rootpath=<rootpath> --recursive=true
Finds the duplicate images from root folder recursively checking the subfolders and the result filename should not require a match.
$ ./dupimgfinder --rootpath=<rootpath> --recursive=true --filenamematch=true
- Copy the duplicate files as softlinks to a duplicate folder.