I have developed an ASP.NET Core Web API application. In that application, i upload files through postman and save those files in a particular path.
I tried to get file path of uploaded file through postman but not able to get it. Please suggest me a solution to get file path of uploaded file through postman. Any help is appreciated.
public IActionResult UploadPackage([FromForm]List<IFormFile> postedFiles)
{
}
In the postedFiles parameter, i am not able to get file path.