C#靜默執(zhí)行CMD命令的方法
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
/// <summary>
/// 執(zhí)行CMD命令
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public static string ExeCmd(string str)
{
try
{
//string str = Console.ReadLine();
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false; //是否使用操作系統(tǒng)shell啟動(dòng)
p.StartInfo.RedirectStandardInput = true;//接受來自調(diào)用程序的輸入信息
p.StartInfo.RedirectStandardOutput = true;//由調(diào)用程序獲取輸出信息
p.StartInfo.RedirectStandardError = true;//重定向標(biāo)準(zhǔn)錯(cuò)誤輸出
p.StartInfo.CreateNoWindow = true;//不顯示程序窗口
p.Start();//啟動(dòng)程序
//向cmd窗口發(fā)送輸入信息
p.StandardInput.WriteLine(str + "&exit");
p.StandardInput.AutoFlush = true;
//p.StandardInput.WriteLine("exit");
//向標(biāo)準(zhǔn)輸入寫入要執(zhí)行的命令。這里使用&是批處理命令的符號(hào),表示前面一個(gè)命令不管是否執(zhí)行成功都執(zhí)行后面(exit)命令,如果不執(zhí)行exit命令,后面調(diào)用ReadToEnd()方法會(huì)假死
//同類的符號(hào)還有&&和||前者表示必須前一個(gè)命令執(zhí)行成功才會(huì)執(zhí)行后面的命令,后者表示必須前一個(gè)命令執(zhí)行失敗才會(huì)執(zhí)行后面的命令
//獲取cmd窗口的輸出信息
string output = p.StandardOutput.ReadToEnd();
//StreamReader reader = p.StandardOutput;
//string line=reader.ReadLine();
//while (!reader.EndOfStream)
//{
// str += line + " ";
// line = reader.ReadLine();
//}
p.WaitForExit();//等待程序執(zhí)行完退出進(jìn)程
p.Close();
Console.WriteLine(output);
return output;
}
catch (Exception ex)
{
return null;
}
}
該文章在 2021/3/15 14:39:21 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |