I'm trying to generate dynamic file paths in django. I want to make a file system like this:

 -- user_12
     --- photo_1
     --- photo_2
 --- user_ 13
     ---- photo_1

I found a related question : Django Custom image upload field with dynamic path

Here, they say we can change the upload_to path and leads to http://docs.djangoproject.com/en/1.2/topics/files/ doc. In the documentation, there is an example :

from django.db import models
from django.core.files.storage import FileSystemStorage

    fs = FileSystemStorage(location='/media/photos')

    class Car(models.Model):
        ...
        photo = models.ImageField(storage=fs)

But, still this is not dynamic, I want to give Car id to the image name, and I cant assign the id before Car definition completed. So how can I create a path with car ID ??

link|improve this question

65% accept rate
feedback

4 Answers

up vote 6 down vote accepted

You can use a callable in the upload_to argument rather than using custom storage. See [1], and note the warning there that the primary key may not yet be set when the function is called (because the upload may be handled before the object is saved to the database), so using ID might not be possible. You might wan to consider using another field on the model such as slug. E.g:

import os
def get_upload_path(instance, filename):
    return os.path.join(
      "user_%d" % instance.owner.id, "car_%s" % instance.slug, filename)

then:

photo = models.ImageField(upload_to=get_upload_path)

[1] http://docs.djangoproject.com/en/1.2/ref/models/fields/#django.db.models.FileField.upload_to

link|improve this answer
feedback

http://docs.djangoproject.com/en/1.2/ref/models/fields/#django.db.models.FileField.upload_to

def upload_path_handler(instance, filename):
    return "user_{id}/{file}".format(id=instance.user.id, file=filename)

class Car(models.Model):
    ...
    photo = models.ImageField(upload_to=upload_path_handler, storage=fs)

There is a warning in the docs, but it shouldn't affect you since we're after the User ID and not the Car ID.

In most cases, this object will not have been saved to the database yet, so if it uses the default AutoField, it might not yet have a value for its primary key field.

link|improve this answer
1  
One thing that may not be entirely obvious unless you read all of the docs on FileField is that the upload_to callable actually returns a filename /path/to/base.ext that gets appended to your storage's location. Because the storage abstracts the absolute path and file operations, the less obvious benefit is that you can move your files to a completely different storage/location and your models will continue to work as expected. – Filip Dupanović Feb 27 '11 at 20:38
feedback

This guy has a way to do dynamic path. The idea is to set your favourite storage and customise "upload_to()" parameter with a function.

Hope this helps.

link|improve this answer
feedback

I found out a different solution, which is dirty, but it works. You should create a new dummy model, which is self synchronized with the original one. I'm not proud of this, but didn't find another solution. In my case I want to upload files, and store each in a directory named after the model id (because I'll generate there more files).

the model.py

class dummyexperiment(models.Model):
  def __unicode__(self):
    return str(self.id)

class experiment(models.Model):
  def get_exfile_path(instance, filename):
    if instance.id == None:
      iid = instance.dummye.id
    else:
      iid = instance.id
    return os.path.join('experiments', str(iid), filename)

  exfile = models.FileField(upload_to=get_exfile_path)

  def save(self, *args, **kwargs):
    if self.id == None:
      self.dummye = dummyexperiment()
      self.dummye.save()
    super(experiment, self).save(*args, **kwargs)

I'm very new in python and in django, but it seems like ok for me.

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.