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.
feedback
|
|
This functionality will be removed in Django 1.3 so I wouldn't rely on it. You could override the Edit: Here is a quick example.
| ||||
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. | ||||
feedback
|