mamweb/seminar/models/tvorba.py

15 lines
488 B
Python
Raw Normal View History

2015-03-13 20:08:18 +01:00
import os
2021-09-05 16:01:05 +02:00
import logging
2015-03-13 20:08:18 +01:00
from django.core.files.storage import FileSystemStorage
2021-10-08 18:06:02 +02:00
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)