Does it support custom locations like 'photos/%Y/%m/%d'
Like can i use the following?
from randomfilestorage.storage import RandomFileSystemStorage
random_storage = RandomFileSystemStorage(location='/media/my_files**/%Y/%m/%d**')
class Example(models.Model):
my_file = FileField(storage=random_storage)