Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
488 B
14 lines
488 B
import os
|
|
import logging
|
|
|
|
from django.core.files.storage import FileSystemStorage
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
class OverwriteStorage(FileSystemStorage):
|
|
""" Varianta FileSystemStorage, která v případě, že soubor cílového
|
|
jména již existuje, ho smaže a místo něj uloží soubor nový"""
|
|
def get_available_name(self,name, max_length=None):
|
|
if self.exists(name):
|
|
os.remove(os.path.join(self.location,name))
|
|
return super().get_available_name(name,max_length)
|
|
|