I'm working on ASP.NET MVC-5 and i have a button that lets me select multiple files for input, so it works with this code
<input type="file" name="file" multiple>
How do i fetch the files to use them within my program logic in the [HttpPost] action from the controller?