Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

image delete in django from the folder

class Song(models.Model):
    name = models.CharField(blank=True, max_length=100)
    author = models.ForeignKey(User, to_field='id', related_name="id_user2")
    song = models.FileField(upload_to='/songs/')
    image = models.ImageField(upload_to='/pictures/', blank=True)
    date_upload = models.DateField(auto_now_add=True)

    def delete(self, using=None, keep_parents=False):
        self.song.storage.delete(self.song.name)
        self.image.storage.delete(self.song.name)
        super().delete()
Comment

PREVIOUS NEXT
Code Example
:: pandas fillna with median of column 
::  
::  
Python ::  
Python ::  
::  
Python ::  
:: button images in tkinter 
::  
Python ::  
:: django migrate using db 
::  
Python ::  
::  
::  
::  
Python ::  
::  
Python ::  
::  
::  
Python ::  
::  
::  
::  
Python ::  
Python ::  
::  
::  
Python ::  
ADD CONTENT
Topic
Content
Source link
Name
8+6 =