File Uploads
When Django handles a file upload, the file data ends up placed inrequest.FILES
(for more on therequest
object see the documentation for request and response objects). This document explains how files are stored on diskand in memory, and how to customize the default behavior.
Warning
There are security risks if you are accepting uploaded content fromuntrusted users! See the security guide’s topic onUser-uploaded content for mitigation details.
Basic file uploads
Consider a form containing a FileField
:
- from django import forms
- class UploadFileForm(forms.Form):
- title = forms.CharField(max_length=50)
- file = forms.FileField()
A view handling this form will receive the file data inrequest.FILES
, which is a dictionarycontaining a key for each FileField
(orImageField
, or other FileField
subclass) in the form. So the data from the above form wouldbe accessible as request.FILES['file']
.
Note that request.FILES
will onlycontain data if the request method was POST
and the <form>
that postedthe request has the attribute enctype="multipart/form-data"
. Otherwise,request.FILES
will be empty.
Most of the time, you’ll pass the file data from request
into the form asdescribed in Binding uploaded files to a form. This would look something like:
- from django.http import HttpResponseRedirect
- from django.shortcuts import render
- from .forms import UploadFileForm
- # Imaginary function to handle an uploaded file.
- from somewhere import handle_uploaded_file
- def upload_file(request):
- if request.method == 'POST':
- form = UploadFileForm(request.POST, request.FILES)
- if form.is_valid():
- handle_uploaded_file(request.FILES['file'])
- return HttpResponseRedirect('/success/url/')
- else:
- form = UploadFileForm()
- return render(request, 'upload.html', {'form': form})
Notice that we have to pass request.FILES
into the form’s constructor; this is how file data gets bound into a form.
Here’s a common way you might handle an uploaded file:
- def handle_uploaded_file(f):
- with open('some/file/name.txt', 'wb+') as destination:
- for chunk in f.chunks():
- destination.write(chunk)
Looping over UploadedFile.chunks()
instead of using read()
ensures thatlarge files don’t overwhelm your system’s memory.
There are a few other methods and attributes available on UploadedFile
objects; see UploadedFile
for a complete reference.
Handling uploaded files with a model
If you’re saving a file on a Model
with aFileField
, using a ModelForm
makes this process much easier. The file object will be saved to the locationspecified by the upload_to
argument of thecorresponding FileField
when callingform.save()
:
- from django.http import HttpResponseRedirect
- from django.shortcuts import render
- from .forms import ModelFormWithFileField
- def upload_file(request):
- if request.method == 'POST':
- form = ModelFormWithFileField(request.POST, request.FILES)
- if form.is_valid():
- # file is saved
- form.save()
- return HttpResponseRedirect('/success/url/')
- else:
- form = ModelFormWithFileField()
- return render(request, 'upload.html', {'form': form})
If you are constructing an object manually, you can assign the file object fromrequest.FILES
to the file field in themodel:
- from django.http import HttpResponseRedirect
- from django.shortcuts import render
- from .forms import UploadFileForm
- from .models import ModelWithFileField
- def upload_file(request):
- if request.method == 'POST':
- form = UploadFileForm(request.POST, request.FILES)
- if form.is_valid():
- instance = ModelWithFileField(file_field=request.FILES['file'])
- instance.save()
- return HttpResponseRedirect('/success/url/')
- else:
- form = UploadFileForm()
- return render(request, 'upload.html', {'form': form})
Uploading multiple files
If you want to upload multiple files using one form field, set the multiple
HTML attribute of field’s widget:
- from django import forms
- class FileFieldForm(forms.Form):
- file_field = forms.FileField(widget=forms.ClearableFileInput(attrs={'multiple': True}))
Then override the post
method of yourFormView
subclass to handle multiple fileuploads:
- from django.views.generic.edit import FormView
- from .forms import FileFieldForm
- class FileFieldView(FormView):
- form_class = FileFieldForm
- template_name = 'upload.html' # Replace with your template.
- success_url = '...' # Replace with your URL or reverse().
- def post(self, request, *args, **kwargs):
- form_class = self.get_form_class()
- form = self.get_form(form_class)
- files = request.FILES.getlist('file_field')
- if form.is_valid():
- for f in files:
- ... # Do something with each file.
- return self.form_valid(form)
- else:
- return self.form_invalid(form)
Upload Handlers
When a user uploads a file, Django passes off the file data to an uploadhandler – a small class that handles file data as it gets uploaded. Uploadhandlers are initially defined in the FILE_UPLOAD_HANDLERS
setting,which defaults to:
- ["django.core.files.uploadhandler.MemoryFileUploadHandler",
- "django.core.files.uploadhandler.TemporaryFileUploadHandler"]
Together MemoryFileUploadHandler
andTemporaryFileUploadHandler
provide Django’s default file uploadbehavior of reading small files into memory and large ones onto disk.
You can write custom handlers that customize how Django handles files. Youcould, for example, use custom handlers to enforce user-level quotas, compressdata on the fly, render progress bars, and even send data to another storagelocation directly without storing it locally. See Writing custom upload handlersfor details on how you can customize or completely replace upload behavior.
Where uploaded data is stored
Before you save uploaded files, the data needs to be stored somewhere.
By default, if an uploaded file is smaller than 2.5 megabytes, Django will holdthe entire contents of the upload in memory. This means that saving the fileinvolves only a read from memory and a write to disk and thus is very fast.
However, if an uploaded file is too large, Django will write the uploaded fileto a temporary file stored in your system’s temporary directory. On a Unix-likeplatform this means you can expect Django to generate a file called somethinglike /tmp/tmpzfp6I6.upload
. If an upload is large enough, you can watch thisfile grow in size as Django streams the data onto disk.
These specifics – 2.5 megabytes; /tmp
; etc. – are “reasonable defaults”which can be customized as described in the next section.
Changing upload handler behavior
There are a few settings which control Django’s file upload behavior. SeeFile Upload Settings for details.
Modifying upload handlers on the fly
Sometimes particular views require different upload behavior. In these cases,you can override upload handlers on a per-request basis by modifyingrequest.upload_handlers
. By default, this list will contain the uploadhandlers given by FILE_UPLOAD_HANDLERS
, but you can modify the listas you would any other list.
For instance, suppose you’ve written a ProgressBarUploadHandler
thatprovides feedback on upload progress to some sort of AJAX widget. You’d add thishandler to your upload handlers like this:
- request.upload_handlers.insert(0, ProgressBarUploadHandler(request))
You’d probably want to use list.insert()
in this case (instead ofappend()
) because a progress bar handler would need to run before anyother handlers. Remember, the upload handlers are processed in order.
If you want to replace the upload handlers completely, you can assign a newlist:
- request.upload_handlers = [ProgressBarUploadHandler(request)]
Note
You can only modify upload handlers before accessingrequest.POST
or request.FILES
– it doesn’t make sense tochange upload handlers after upload handling has alreadystarted. If you try to modify request.upload_handlers
afterreading from request.POST
or request.FILES
Django willthrow an error.
Thus, you should always modify uploading handlers as early in your view aspossible.
Also, request.POST
is accessed byCsrfViewMiddleware
which is enabled bydefault. This means you will need to usecsrf_exempt()
on your view to allow youto change the upload handlers. You will then need to usecsrf_protect()
on the function thatactually processes the request. Note that this means that the handlers maystart receiving the file upload before the CSRF checks have been done.Example code:
- from django.views.decorators.csrf import csrf_exempt, csrf_protect
- @csrf_exempt
- def upload_file_view(request):
- request.upload_handlers.insert(0, ProgressBarUploadHandler(request))
- return _upload_file_view(request)
- @csrf_protect
- def _upload_file_view(request):
- ... # Process request