File deletion of FileField and ImageField in the Admin panel

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
class ImageModel(models.Model):
    image = ImageField(...)

    def delete(self, *args, **kwargs):
        # You have to prepare what you need before delete the model
        storage, path = self.image.storage, self.image.path
        # Delete the model before the file
        super(ImageModel, self).delete(*args, **kwargs)
        # Delete the file after the model
        storage.delete(path)

More like this

  1. REMOVE IMAGEFIELD ATTACHMENT IN DJANGO by timonweb 1 year ago
  2. Database file storage by powerfox 4 years, 3 months ago
  3. Removing old ImageFields and FileFields when updating through admin by alejandro.alonso 1 year ago
  4. Add a "remove file" field for Image- or FileFields by rodrigoc 4 years, 10 months ago
  5. Admin page without inlines dinamically by davmuz 11 months ago

Comments

(Forgotten your password?)