79544541

Date: 2025-03-30 11:48:29
Score: 0.5
Natty:
Report link

It's officially supported since Django 5.1:

Simply FileSystemStorage(..., allow_overwrite=True)

or

STORAGES = {
    "default": {
        "BACKEND": "django.core.files.storage.FileSystemStorage",
        "OPTIONS": {
            "allow_overwrite": True,
        },
    },
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: János Roden