c# 程序調用cmd執行命令如SVN.exeshell
string str = Console.ReadLine(); System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName = "cmd.exe"; p.StartInfo.WorkingDirectory="C:\tool\";//具體第三方exe目錄,如snv.exe,沒這句命令將沒法識別,除非這個工具已加到環境變量中了 p.StartInfo.UseShellExecute = false; //是否使用操做系統shell啓動 p.StartInfo.RedirectStandardInput = true;//接受來自調用程序的輸入信息 p.StartInfo.RedirectStandardOutput = true;//由調用程序獲取輸出信息 p.StartInfo.RedirectStandardError = true;//重定向標準錯誤輸出 p.StartInfo.CreateNoWindow = true;//不顯示程序窗口 p.Start();//啓動程序 //向cmd窗口發送輸入信息 p.StandardInput.WriteLine(str + "&exit"); p.StandardInput.AutoFlush = true; //p.StandardInput.WriteLine("exit"); //向標準輸入寫入要執行的命令。這裏使用&是批處理命令的符號,表示前面一個命令不論是否執行成功都執行後面(exit)命令,若是不執行exit命令,後面調用ReadToEnd()方法會假死 //同類的符號還有&&和||前者表示必須前一個命令執行成功纔會執行後面的命令,後者表示必須前一個命令執行失敗纔會執行後面的命令 //獲取cmd窗口的輸出信息 string output = p.StandardOutput.ReadToEnd(); //StreamReader reader = p.StandardOutput; //string line=reader.ReadLine(); //while (!reader.EndOfStream) //{ // str += line + " "; // line = reader.ReadLine(); //} p.WaitForExit();//等待程序執行完退出進程 p.Close(); Console.WriteLine(output);