When I delete a model's instance that has a FileField, the actual file is left in my MEDIA_ROOT folder. To counter this, I'm listening for the post_delete signal, and doing this:

def delete_actual_file(sender,**kwargs):
  import os
  instance = kwargs.get("instance")
  os.unlink(instance.file.path)

post_delete.connect(delete_actual_file,sender=ModelWithFileField)

It seems to work ok, but I'm not sure if it's best practice to do it like this. Any thoughts?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Which version of Django are you using? The behaviour changed in Django 1.3. The docs you might want are here and you can hook that into your signal, but it'd have to become a pre-delete action, I imagine.

link|improve this answer
I'm using 1.3. Why should it become a pre-delete action? – Tempus Jun 16 '11 at 12:36
Because, off the top of my head / without looking at the code, I would't want to bet on that row still being in the DB post_delete. But I could be wrong. – stevejalim Jun 16 '11 at 12:52
It's true, maybe it won't be in the db, but you still have access to the instance in the kwargs, and it contains valid data. The code I posted above works, but I wasn't sure about my approach to deletion. – Tempus Jun 16 '11 at 12:55
If it works, that's great. I guess the file handle will still be valid in the instance that's being passed around, but I wasn't sure when that was being evaluated (lazily or not). Glad it's working for you. – stevejalim Jun 16 '11 at 13:38
feedback

Your Answer

 
or
required, but never shown

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