IFormFile Correct Type for Image Uploading?

592 Views Asked by At

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?

1

There are 1 best solutions below

0
On

Since nobody has posted the solution, I'll do it... :-)

public IActionResult Import(IFormFile filepond)
{
    try
    {
        var somePath = @"Ё:\Some\Path\";
        var filePath = Path.Combine(somePath, filepond.FileName);
        var stream = filepond.OpenReadStream();
        var fileStream = new FileStream(filePath, FileMode.Create, FileAccess.Write);
        stream.CopyTo(fileStream);
        fileStream.Dispose();
    }
    catch (Exception) {
        return BadRequest();
    }
    return Ok();
}