FormFile returns the first file by key from a MultipartForm. The multipart form is parsed using the application's BodyLimit to prevent unbounded memory usage.
(key string)
| 55 | // The multipart form is parsed using the application's BodyLimit to prevent |
| 56 | // unbounded memory usage. |
| 57 | FormFile(key string) (*multipart.FileHeader, error) |
| 58 | // FormValue returns the first value by key from a MultipartForm. |
| 59 | // Search is performed in QueryArgs, PostArgs, MultipartForm and FormFile in this particular order. |
| 60 | // Defaults to the empty string "" if the form value doesn't exist. |
no outgoing calls