溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何實現(xiàn)文件上傳與下載

發(fā)布時間:2021-07-08 14:44:32 來源:億速云 閱讀:552 作者:小新 欄目:編程語言

這篇文章主要介紹C#如何實現(xiàn)文件上傳與下載,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

C#實現(xiàn)文件上傳代碼:

 public ActionResult Upload()
    {
      // var pathUrl = "http://" + Request.Url.Authority;
      var file = Request.Files["Filedata"];

      var uploadFileName = file.FileName;

      string filePath = "/File/" + uploadFileName;
      string AbsolutePath = Server.MapPath(filePath);
      file.SaveAs(AbsolutePath);       //將上傳的東西保存     
      return Json(new { FileName = uploadFileName, FilePath = filePath });

    }

C#實現(xiàn)文件下載功能:

 public ActionResult DownLoad(string FileName)
    {
      string fileName = FileName;//客戶端保存的文件名 
      string filePath = Server.MapPath("/File/"+ FileName);//路徑    
                                 //以字符流的形式下載文件   
      FileStream fs = new FileStream(filePath, FileMode.Open);
      byte[] bytes = new byte[(int)fs.Length];
      fs.Read(bytes, 0, bytes.Length);
      fs.Close();
      Response.ContentType = "application/octet-stream";

      //通知瀏覽器下載文件而不是打開  
      Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
      Response.BinaryWrite(bytes);
      Response.Flush();
      Response.End();
      return Json("");
    }

以上是“C#如何實現(xiàn)文件上傳與下載”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI