Explain file-rename logic

This commit is contained in:
Felix Eckhofer 2022-02-20 14:04:28 +01:00
parent f9bbb9a8c3
commit 335b8c63e0
No known key found for this signature in database
GPG Key ID: B4543DCDE458BF73

View File

@ -226,6 +226,8 @@ def set_tags(sender,
def cleanup_document_deletion(sender, instance, using, **kwargs):
with FileLock(settings.MEDIA_LOCK):
if settings.TRASH_DIR:
# Find a non-conflicting filename in case a document with the same
# name was moved to trash earlier
counter = 0
old_filename = os.path.split(instance.source_path)[1]
(old_filebase, old_fileext) = os.path.splitext(old_filename)