C \ # 모든 파일 을 압축 한 후 파일 을 다운로드 합 니 다.
2286 단어 파일 다운로드
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btt_Click(object sender, EventArgs e)
{
string Path = "c:\\de";
string resultPath = string.Empty;
bool rel = false;
TimeSpan nowTimeSpan = new TimeSpan();
resultPath = YaSuo(out rel, out nowTimeSpan);
ResponseFile(resultPath);
}
/// <summary>
///
/// </summary>
/// <returns> </returns>
public string YaSuo(out bool bo, out TimeSpan times)
{
string rarurlPath = string.Empty;
bo = false;
//
string yasuoPathSave = "c:\\de\\TZ.rar";
string yasuoPath = "c:\\de\\temp";//
System.Diagnostics.Process pro = new System.Diagnostics.Process();
pro.StartInfo.FileName = @"C:\Program Files\WinRAR\WinRAR.exe";//WinRAR
//pro.StartInfo.Arguments = "a " + yasuoPathSave + " " + yasuoPath + " -r ";//dir
pro.StartInfo.Arguments = string.Format("a {0} {1} -r", yasuoPathSave, yasuoPath);
pro.Start();
times = pro.TotalProcessorTime;
bo = pro.WaitForExit(60000);//
if (!bo)
pro.Kill();
pro.Close();
pro.Dispose();
rarurlPath = yasuoPathSave;
return rarurlPath;
}
protected void ResponseFile(string filename)
{
FileInfo file = new FileInfo(filename);//
Response.Clear();//
Response.Charset = "GB2312";//
Response.ContentEncoding = Encoding.Default;//
Response.AddHeader("Content-Disposition", "attachment;filename=" + file.Name);
// 。 “ / ”
Response.AddHeader("Content-Length", file.Length.ToString());
// , ,
Response.WriteFile(file.FullName);//
Response.End();
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 파일 다운로드의 몇 가지 실현 방식을 상세히 설명하다Java 파일을 다운로드하는 방법은 다음과 같습니다. //파일을 온라인으로 열 수 있는 방법 이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.