Coder Social home page Coder Social logo

finddups's Introduction

This is a command line Java app to find duplicate files on your computer.

You can either build the application from source, or download a pre-compiled version.
To build from source, you need Git, a Java JDK, and Maven:

git clone https://github.com/caluml/finddups
mvn assembly:single install
java -jar ~/.m2/repository/finddups/finddups/0.0.1-SNAPSHOT/finddups-0.0.1-SNAPSHOT-jar-with-dependencies.jar 1000000 /home /tmp

To just run the supplied version (might be a little out of date):

Download https://github.com/caluml/finddups/raw/master/finddups.jar
java -jar finddups.jar 1000000 /home /tmp


First, it recurses the given directory, building a list of files.
Then, it looks for files which have identically sized files.
It then reads those identically sized files, comparing them byte for byte until it finds a byte that doesn't match, or it reaches the end of the file.

I chose not to use any kind of hashing or CRC system, as that would require reading the entire file, which would be less efficient if a byte near the beginning was different.

The app outputs its errors to stderr, and its results to stdout as it goes.

Any suggestions/comments to my github username at gmail.com

TODO: Time generating two MD5s of two identical files and compare them, with comparing those two files byte by byte.
CAVEAT: I have only tested this on Linux, with Java 6. 

finddups's People

Contributors

caluml avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.