Created
June 4, 2013 13:49
-
-
Save MattTheRed/5706065 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| class TheModel(models.Models): | |
| file = models.FileField(upload_to=self.sort_files_by_extension, max_length=255) | |
| def sort_files_by_extension(self, filename): | |
| ext = os.path.splitext(filename)[1] | |
| ext = ext.lower() | |
| return "formats/%s" % ext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment