Update only deletions? #5461
-
Is there a way to use the update command to only look for file deletions? I have many files that I don't write metadata to, and every time I run an update because some files were deleted it goes through all those again. For the most part I only need update to detect file deletions or moves. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Lines 1660 to 1667 in 65d78cb Can you post the output of running update with |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
Update doesn't support only matching deletions at the moment, but it might be nice to have a
--only-delete
flag to avoid making any other changes. It should be easy to add - just skipping the rest of this loop if the flag is set:beets/beets/ui/commands.py
Lines 1650 to 1704 in 65d78cb