最近客戶要求把一個樹型目錄導(dǎo)出成文件夾套文件夾的結(jié)構(gòu),并提供下載功能,剛開始感覺功能比較容易實現(xiàn)就在最短的時間把基本功能搞定,當(dāng)發(fā)布到服務(wù)器上之后發(fā)現(xiàn)直接在本應(yīng)用程序中導(dǎo)出目錄(下帶ntko文檔及附件)再進行壓縮,程序直接卡死了!后來就想到了要做一window服務(wù),只是客戶給的時間太短,沒辦法先寫一控制臺程序生成一個exe文件,然后再調(diào)用這個exe文件,這樣就可以緩解本程序壓力了!
在調(diào)用exe端傳過去一個要壓縮的文件夾的路徑,然后在控制臺下獲取該路徑進行壓縮,壓縮完成之后返回壓縮過后的文件夾路徑或者返回一個成功與否的狀態(tài)
string path = @"E:\測試項目\201303\TestWindowsService\ca\bin\Debug\ca.exe";
string fileName = path;
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = fileName;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.Arguments = @"D:\zhai\aaa\安置幫教";//參數(shù)以空格分隔,如果某個參數(shù)為空,可以傳入””
p.Start();
p.WaitForExit();
//此處可以返回一個字符串,此例是返回壓縮成功之后的一個文件路徑
string output = p.StandardOutput.ReadToEnd();
this.TextBox1.Text = output;
//Process myProcess = new Process();
//string fileName = path;
//string para = "你好 北緯30度!";
//ProcessStartInfo myProcessStartInfo = new ProcessStartInfo(fileName, para);
//myProcess.StartInfo = myProcessStartInfo;
//myProcess.Start();
//while (!myProcess.HasExited)
//{
// myProcess.WaitForExit();
//}
//int returnValue = myProcess.ExitCode;