django

TIL230414 이미지 업로드 삭제, 수정

베스트오버 2023. 4. 14.

문제

이미지 업로드는 되었으나

업로드 했던 삭제와 수정이 경로만 되는 경우

 

해결방법

https://pypi.org/project/django-cleanup/

 

django-cleanup

Deletes old files....

pypi.org

 

Installation

pip install django-cleanup

Configuration

settings.py 추가

INSTALLED_APPS = (
    ...,
    'django_cleanup.apps.CleanupConfig',
)

img.delete() 를 하면 알아서 지워준다.

왕신기

TIL230414 이미지 업로드 삭제, 수정 - undefined - 모든 영역

 

 

 

댓글