| 11 | | Most Web sites wouldn't be complete without a way to upload files. When Django |
|---|
| 12 | | handles a file upload, the file data ends up placed in ``request.FILES`` (for |
|---|
| 13 | | more on the ``request`` object see the documentation for :ref:`request and |
|---|
| 14 | | response objects <ref-request-response>`). This document explains how files are |
|---|
| 15 | | stored on disk and in memory, and how to customize the default behavior. |
|---|
| | 11 | When Django handles a file upload, the file data ends up placed in |
|---|
| | 12 | ``request.FILES`` (for more on the ``request`` object see the documentation for |
|---|
| | 13 | :ref:`request and response objects <ref-request-response>`). This document |
|---|
| | 14 | explains how files are stored on disk and in memory, and how to customize the |
|---|
| | 15 | default behavior. |
|---|