Django

Django 서버의 static folder 파일 다운로드

jwstory.com 2022. 2. 8. 09:51
반응형

 

이미지 썸네일 삭제
Download static file displayed in the list Django

I am trying to make static files download-able from the template of my Django app. def list(request): folder = '/home/galander/Desktop/Projekty/django-pdf-generator/django-pdf/generator/static...

stackoverflow.com

The File object | Django documentation | Django

The File object ¶ The django.core.files module and its submodules contain built-in classes for basic file handling in Django. The File class ¶ class File ( file_object , name=None ) [source] ¶ The File class is a thin wrapper around a Python file object with some Django-specific additions. Internall...

docs.djangoproject.com

 

일단 static 아래에 폴더 만들어서 파일 올려 놓으면 바로 접근이 가능하다.

 

반응형