I'm using django-storages with amazon S3, and uploading image files with:

models.ImageField(upload_to="img=%Y-%m-%d", max_length=256, blank=True, null=True)

When the files are uploaded to S3 however, it has the original file name attached at the end. How do I get rid of that and replace it, with say some random hash instead?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Supply a callable instead of a string to upload_to. The callable will be passed the instance being saved, and the filename, and will have to return the full path, including the filename -- so you can choose not to use the original filename. (You'll have to call strftime yourself with datetime.date.today(), however).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.