You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For deduping, if the OS supports it (and user permissions support it), in undupe.py add the library from send2trash import send2trash (of course this also adds a new library in requirements)
and replace os.remove(file) with send2trash(file)
May make for a "safer" undupe between a dry run and complete deletion.
The text was updated successfully, but these errors were encountered:
For deduping, if the OS supports it (and user permissions support it), in undupe.py add the library
from send2trash import send2trash
(of course this also adds a new library in requirements)and replace
os.remove(file)
withsend2trash(file)
May make for a "safer" undupe between a dry run and complete deletion.
The text was updated successfully, but these errors were encountered: