程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> Asp.net獲取服務器指定文件夾目錄文件並提供下載的方法

Asp.net獲取服務器指定文件夾目錄文件並提供下載的方法

編輯:ASP.NET基礎

本文實例講述了Asp.net獲取服務器指定文件夾目錄文件並提供下載的方法。分享給大家供大家參考。具體實現方法如下:
復制代碼 代碼如下:string dirPath = HttpContext.Current.Server.MapPath("uploads/");
if (Directory.Exists(dirPath))
{
       //獲得目錄信息
       DirectoryInfo dir = new DirectoryInfo(dirPath);
       //獲得目錄文件列表
       FileInfo[] files = dir.GetFiles("*.*");
       string[] fileNames = new string[files.Length];

       //臨時數據表
       DataTable dt = new DataTable();
       dt.Columns.Add("FileName");
      
       foreach (FileInfo fileInfo in files)
       {
    DataRow dr = dt.NewRow();
    dr["FileName"] = fileInfo.Name;
    dt.Rows.Add(dr);

       }
       Repeater1.DataSource = dt;
       Repeater1.DataBind();
}

if (e.CommandName == "down")
{
    try
    {
     string DownloadFileName = "~/uploads/" + e.CommandArgument.ToString();//文件路徑
     string filepath = Server.MapPath(DownloadFileName);
     string filename = Path.GetFileName(filepath);
     FileInfo file = new FileInfo(filepath);
     Response.Clear();
     Response.ContentType = "application/octet-stream";
     Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(filename, System.Text.Encoding.UTF8));
     Response.AddHeader("Content-length", file.Length.ToString());
     Response.Flush();
     Response.WriteFile(filepath);
    }
    catch
    {
 Response.Write("<script>alert('沒有找到下載的源文件')</script>");
    }
}

希望本文所述對大家的asp.net程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved