Skip to content

Releases: Gartham/file-duplicate-checker

Bulk Printing (v1.1)

29 Sep 17:13
Compare
Choose a tag to compare

This release primarily updates the previous version with printing all file duplicates after it parses the file hierarchy, instead of printing that there is a single duplicate per file. The program also adds some output that prints some stats on how fast hashing is happening, while it's running.

Bulk Printing

For five files, all with the same hash, the program used to print something like:

Duplicate between files:
   C:/path/to/file/file-1.ext
   C:/path/to/file/file-2.ext
Duplicate between files:
   C:/path/to/file/file-1.ext
   C:/path/to/file/file-3.ext
Duplicate between files:
   C:/path/to/file/file-1.ext
   C:/path/to/file/file-4.ext
...

Now the program prints something like this:

Duplicate between files:
   C:/path/to/file/file-1.ext
   C:/path/to/file/file-2.ext
   C:/path/to/file/file-3.ext
   C:/path/to/file/file-4.ext
   C:/path/to/file/file-5.ext

Initial Release (v1.0)

23 Sep 19:48
faaa516
Compare
Choose a tag to compare

This initial release has file duplication checking. Call the application and provide a directory as the single argument:

java -jar dupecheck.jar C:/some/folder