You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
339 B
10 lines
339 B
import tempfile |
|
import os |
|
from django.db import models |
|
from django.core.files.storage import FileSystemStorage |
|
|
|
temp_storage = FileSystemStorage(tempfile.mkdtemp()) |
|
UPLOAD_TO = os.path.join(temp_storage.location, 'test_upload') |
|
|
|
class FileModel(models.Model): |
|
testfile = models.FileField(storage=temp_storage, upload_to='test_upload')
|
|
|