Hi, You are on the right track. In your save() method you can change the field values for a FileField object, then save it. See the documentation on overriding model methods for more details.
You routine would look something like this: def save(self, force_insert=False, force_update=False): files.upload_to = 'secret_uploads' super(Seed, self).save(force_insert, force_update) # Call the "real" save() method. return Hope this helps, Carol Hatcher On Jul 31, 9:58 pm, Shuge Lee <shuge....@gmail.com> wrote: > Take a look here > > http://dpaste.com/73953/ > > or following > > # in models.py > > class Seed(models.Model): > name = models.CharField(max_length=128) > > UPLOAD_ROOT = 'uploads' > files = models.FileField(upload_to=UPLOAD_ROOT, blank=True, > null=True) > source = models.CharField(max_length=256, blank=True, null=True) > > def save(self, force_insert=False, force_update=False): > # I want to change self.files here > # how to do it ? > > Thanks for reply. --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---