Ticket #10400: fileupload.diff
File fileupload.diff, 608 bytes (added by , 16 years ago) |
---|
-
docs/topics/http/file-uploads.txt
14 14 explains how files are stored on disk and in memory, and how to customize the 15 15 default behavior. 16 16 17 Note that ``FILES`` will only contain data if the request method was POST 18 and the ``<form>`` that posted to the request had 19 ``enctype="multipart/form-data"``. Otherwise, ``FILES`` will be a blank 20 dictionary-like object. 21 17 22 Basic file uploads 18 23 ================== 19 24