fastdupes
fastdupes copied to clipboard
High-efficiency script for finding sets of duplicate files
It would be great to be able to import fastdupes and use it in our own Python projects, but the documentation is lacking clear guidance. I can imagine something as...
As far as I can see it would only change a few print statements and a `str`/`basestr` change. The patch as far as I can gather: ```patch @@ -106,7 +106,7...
Tested on Ubuntu 16.04. ```sh #!/bin/sh git clone https://github.com/ssokolow/fastdupes cd fastdupes mkdir files seq 100000 > files/file1; echo "1" >> files/file1 seq 100000 > files/file2; echo "2" >> files/file2 cmp...
Fix #31, also one additional Python 3 fix.
One of the big flaws that I dislike about [fdupes](https://github.com/adrianlopezroche/fdupes) is the irrevocable nature. It would be nice to send files to the trash. Fortunately, there is already a nice...
Most of the other duplication tool removers allow combining options like `delete` and `noprompt` to preserve the first file in each set of duplicates and delete the rest without prompting...
feature request to allow entering "none" in response to `Keepers:` forcing deletion of all duplicates.
Issue #29 is describing the issue. Would be great if you could verify if it works as intended. I'm sorting the `pruneList` which *mostly* choses the same folder when a...
When the paths to find contains file with unicode filename, fastdupe will throw an error at line: 306, in sizeClassifier filestat = _stat(path) WindowsError: [Error 123] I am using python...
In order to streamline the "find dupes, do something manual, re-determine dupes" workflow that often emerges in one-off situations, there should be some way to cache data between runs. (Something...