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 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기