In Django I use the model
class Specialist(models.Model):
...
photo = models.ImageField(_('photo'), upload_to='spec_foto')
...
After I create and save a new object, I have the "photo" field at .../spec_photo/filename.jpg But I'd like to move the file to .../spec_photo/ID/photo.jpg, where ID belongs to the Specialist object. In order to do that, I override Model.save method
def save(self):
# Saving a new object and getting ID
super(Specialist, self).save()
# After getting ID, move photo file to the right destination
# ????
# Saving the object with the right file destination
super(Specialist, self).save()
The question is, what should I do to move file? (??? in the code). Or maybe is there a simpler way?
Instead of setting the 'upload_to' as a string, you can set it as a callable (ie a function) which will return the path you require (https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.FileField.upload_to):