public ActionResult DownLoad_File() { return File(ScLiu(PathUrl), "application/octet-stream", "sb.pdf"); } public Stream ScLiu(string path) { using (System.IO.MemoryStream memStream = new System.IO.MemoryStream()) { WebClient webClient = new WebClient(); var obj = webClient.OpenRead(path); return obj; } }
时间: 2024-10-03 15:12:55