Skip to content

r-pai/dupimgfinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Introduction

imgdupfinder is a tool to find duplicate images. Its written in golang. Currently it support following image formats 'png' and 'jpg/jpeg' .

Features!

  • Recursive searching.

Installation

Usage

$ ./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.

Eg

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

TODO

  • Copy the duplicate files as softlinks to a duplicate folder.

About

Dupimgfinder is a tool to find out duplicate images. Its written in golang.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages