Deduplicator - Which one will be removed #1868
-
|
Of the deduplicator results, what is the logic behind which file will be removed and which one kept? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The logic is defined here: The general order of checks which files to keep are by descending priority:
This is currently hardcoded. I want to add a way to customize this, but have not found the time to do so (and it's difficult to come up with a good UI that everyone is not overwhelmed by).
Based on the above criteria, one file would be picked to keep, the rest would be deleted. |
Beta Was this translation helpful? Give feedback.
The logic is defined here:
https://github.com/d4rken-org/sdmaid-se/tree/main/app/src/main/java/eu/darken/sdmse/deduplicator/core/arbiter/checks
The general order of checks which files to keep are by descending priority:
This is currently hardco…