I am converting multiple emf files to Vsdx files using c# and I wanted to download all converted vsdx files with zip file.
But instead of downloading directly I want it to open a download prompt to choose the location of file to be downloaded.
PS: I wanted to show the popup to select the path to download file
public ActionResult DownloadFile(string filePath)
{
string id = Convert.ToString(Session["id"]);
workingDirectory = HttpContext.Server.MapPath("~");
string fullpath = Path.Combine(workingDirectory, "output", id, "vsdx", filePath);
return File(fullpath, MimeTypes.GetMimeType(fullpath), Path.GetFileName(fullpath));
}