Ticket #10400: fileupload.diff

File fileupload.diff, 608 bytes (added by Claude Paroz, 15 years ago)
  • docs/topics/http/file-uploads.txt

     
    1414explains how files are stored on disk and in memory, and how to customize the
    1515default behavior.
    1616
     17Note that ``FILES`` will only contain data if the request method was POST
     18and the ``<form>`` that posted to the request had
     19``enctype="multipart/form-data"``. Otherwise, ``FILES`` will be a blank
     20dictionary-like object.
     21
    1722Basic file uploads
    1823==================
    1924
Back to Top