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?