Replies: 1 comment 5 replies
-
If you run You can check this by running Then run |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm struggling with the behavior of the
duplicates
plugin. I would like to make a copy of all the duplicate files in another directory and then delete all of the duplicates (alternatively, I could just move them). However, when I run thebeets duplicate -k artist -k title -k album --copy dupes
, beets correctly copies the file frommusic
todupes
, but then updates the file path of the duplicate to the file in thedupes
folder. So now I have two files in themusic
folder, and one in thedupes
folder, and two entries in the db, one pointing to themusic
folder and one pointing todupes
. So if I runbeets duplicate -k artist -k title -k album --delete
, the file in thedupes
folder is deleted, leaving me with the same duplicate files in themusic
folder, but only one entry in the db.Any suggestions on the way to actually accomplish my goal here? (delete duplicates but make a backup first) Also, how can I best import the copied files in
music
which are no longer in the db?Beta Was this translation helpful? Give feedback.
All reactions