I am using 1.2.5 with a standard ImageField and using the built-in storage backend. Files upload fine but when I remove an entry from admin the actual file on the server does not delete.

link|improve this question
Hm, actually it should. Check file permissions on your upload folder (change to 0777). – Torsten Mar 21 '11 at 1:32
feedback

2 Answers

This functionality will be removed in Django 1.3 so I wouldn't rely on it.

You could override the delete method of the model in question to delete the file before removing the entry from the database completely.

Edit:

Here is a quick example.

class MyModel(models.Model):

    self.somefile = models.FileField(...)

    def delete(self, *args, **kwargs):
        somefile.delete()

        super(MyModel, self).delete(*args, **kwargs)
link|improve this answer
Do you have an example of how to use that in a model in order to delete the file? I'm looking at the docs and see examples of how to remove the object from the database but do not see any implementations on file deletion. – narkeeso Mar 22 '11 at 22:59
feedback

You may consider using a pre_delete or post_delete signal:

https://docs.djangoproject.com/en/dev/topics/signals/

Of course, the same reasons that FileField automatic deletion was removed also apply here. If you delete a file that is referenced somewhere else you will have problems.

In my case this seemed appropriate because I had a dedicated File model to manage all of my files.

Note: For some reason post_delete doesn't seem to work right. The file got deleted, but the database record stayed, which is completely the opposite of what I would expect, even under error conditions. pre_delete works fine though.

link|improve this answer
probably post_delete won't work, because file_field.delete() by default saves model to db, try file_field.delete(False) docs.djangoproject.com/en/1.3/ref/models/fields/… – Adam Jurczyk Mar 11 at 22:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.