parse_multipart {mime} | R Documentation |
Parse multipart form data
Description
This function parses the HTML form data from a Rook environment (an HTTP POST request).
Usage
parse_multipart(env)
Arguments
env |
the HTTP request environment |
Value
A named list containing the values of the form data, and the files
uploaded are saved to temporary files (the temporary filenames are
returned). It may also be NULL
if there is anything unexpected in
the form data, or the form is empty.
References
This function was borrowed from https://github.com/jeffreyhorner/Rook/ with slight modifications.
[Package mime version 0.12 Index]