On Wed, Jun 25, 2008 at 6:37 AM, stoKes <[EMAIL PROTECTED]> wrote: > within django is it possible to customize upload_to in order to save > the file into a /folder/id/category type situation? > > so far it just dumps everything into one directory.
As stated in the FileField documentation[1], you can split the files into different directories based on when they were uploaded. It's not the structure you're asking about, but at least it avoids dumping all the files into one directory. In the not-so-distant future though (pre-1.0), there will be a refactoring[2] of a lot of how FileFIeld works, which will make upload_to a lot more powerful. You'll be able to pass in a function instead of just a string, so you can have code to determine how to name your files and directories. That's not in trunk yet, but it's on the list of things we're planning to get in before the 1.0 release this fall. -Gul [1] http://www.djangoproject.com/documentation/model-api/#filefield [2] http://code.djangoproject.com/ticket/5361 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---