I have an asp.net core 2 api and I making a method that will accept images(maybe zip files in the future)
I am using a javascript image uplaoder called filepond and I am using IFormFile as the type.
public IActionResult Import(IFormFile filepond)
{
// return BadRequest();
return Ok();
}
It seems to grab data but when I look at what is stored in filepond I see
name = "filepond"
yet the file name I uploaded was like testImage.jpg.
I see the file name seems to be stored in
ContentDisposition = "form-data; name=\"filepond\"; filename=\"testImage.jpg\""
Is this how it should be?
Since nobody has posted the solution, I'll do it... :-)