I want to upload a set of files into azure-blob-storage.I have to pass the files in zip format while calling upload method inside the controller(Am using postman to make this call).Though am getting the zipped data inside the controller, am unable to extract files in this zipped data.
Below Image shows how I call the api controller and pass the zip file using postman.
[HttpPost]
public HttpResponseMessage PostFiles()
{
var zipfile = Request.Form.Files;
.....
if I get streams of individual files from the zipped file, I would be able to upload the value to azure blob and get the respective file Id as my desired output.
Please provide a solution for whether any third party dll will be required to fetch the individual files details inside the zip file or this issue could be resolved without any third party tool.