The formFile function works perfectly but in the docs it´s said that the "FormFile returns the first file for the provided form key". Is there a way of obtaining the several files that an html form with an input like:
<input type="file" name="myfiles" multiple="multiple">
might return?
FormFile is a convenience function. You can manually parse and find the files you are looking for in the MultipartForm.