c#執行DOC命令

來源:互聯網
上載者:User
public class TestCmd
{
public void OperationCmd()
{
string dosString1 = "命令1";
string dosString2 = "命令2";
Execute(dosString1);
Execute(dosString2);

}

public string Execute(string dosCommand)
{
return Execute(dosCommand, 6 * 1000);
}

/// <summary>
/// 執行DOS命令,返回DOS命令的輸出
/// </summary>
/// <param name="dosCommand">dos命令</param>
/// <param name="milliseconds">等待命令執行的時間(單位:毫秒),如果設定為0,則無限等待</param>
/// <returns>返回DOS命令的輸出</returns>
public static string Execute(string dosCommand, int milliseconds)
{
string output = ""; //輸出字串
if (dosCommand != null && dosCommand != "")
{
Process process = new Process(); //建立進程對象
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "cmd.exe"; //設定需要執行的命令
startInfo.Arguments = "/C " + dosCommand; //設定參數,其中的“/C”表示執行完命令後馬上退出
startInfo.UseShellExecute = false; //不使用系統外殼程式啟動
startInfo.RedirectStandardInput = false; //不重新導向輸入
startInfo.RedirectStandardOutput = true; //重新導向輸出
startInfo.CreateNoWindow = true; //不建立視窗
process.StartInfo = startInfo;
try
{
if (process.Start()) //開始進程
{
if (milliseconds == 0)
process.WaitForExit(); //這裡無限等待進程結束
else
process.WaitForExit(milliseconds); //這裡等待進程結束,等待時間為指定的毫秒
output = process.StandardOutput.ReadToEnd();//讀取進程的輸出
}
}
catch
{
}
finally
{
if (process != null)
process.Close();
}
}
return output;
}
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.