C# 調用命令行執行Cmd命令的操作

1、不知道為啥

process.StartInfo.Arguments = "/c" + "start D:/Tim/Bin/QQScLauncher.exe"; 

這個執行命令一定要加/c ,/c ,/c,重要的事說3遍 才能正常編譯並運行

cmd /c dir:是執行完dir命令後關閉命令窗口;

cmd /k dir:是執行完dir命令後不關閉命令窗口。

process.StartInfo.Arguments 我猜測這個調用的是第一張圖的窗口,而不是二圖的窗口

代碼:

    static void LaunchCommandLineApp()
    {
        Process process = new Process();
        process.StartInfo.FileName = "cmd.exe";
        process.StartInfo.Arguments = "/c" + "start D:/Tim/Bin/QQScLauncher.exe";
        process.StartInfo.UseShellExecute = false;   //是否使用操作系統shell啟動 
        process.StartInfo.CreateNoWindow = false;   //是否在新窗口中啟動該進程的值 (不顯示程序窗口)
        process.Start();
        process.WaitForExit();  //等待程序執行完退出進程
        process.Close();
    }

補充:C# 執行指定命令和執行cmd命令

通常需要在程序執行過程中調用CMD命令並獲取信息,

以下方法實現瞭該功能

/// <summary>
/// 執行內部命令(cmd.exe 中的命令)
/// </summary>
/// <param name="cmdline">命令行</param>
/// <returns>執行結果</returns>
public static string ExecuteInCmd(string cmdline)
{
    using (var process = new Process())
    {
        process.StartInfo.FileName = "cmd.exe";
        process.StartInfo.UseShellExecute = false;
        process.StartInfo.RedirectStandardInput = true;
        process.StartInfo.RedirectStandardOutput = true;
        process.StartInfo.RedirectStandardError = true;
        process.StartInfo.CreateNoWindow = true; 
        process.Start();
        process.StandardInput.AutoFlush = true;
        process.StandardInput.WriteLine(cmdline + "&exit");
 
        //獲取cmd窗口的輸出信息  
        string output = process.StandardOutput.ReadToEnd();
 
        process.WaitForExit();
        process.Close(); 
        return output;
    }
}

以下方法實現瞭調用第三方實現的命令

/// <summary>
/// 執行外部命令
/// </summary>
/// <param name="argument">命令參數</param>
/// <param name="application">命令程序路徑</param>
/// <returns>執行結果</returns>
public static string ExecuteOutCmd(string argument, string applocaltion)
{
    using (var process = new Process())
    {
        process.StartInfo.Arguments = argument;
        process.StartInfo.FileName = applocaltion;
        process.StartInfo.UseShellExecute = false;
        process.StartInfo.RedirectStandardInput = true;
        process.StartInfo.RedirectStandardOutput = true;
        process.StartInfo.RedirectStandardError = true;
        process.StartInfo.CreateNoWindow = true; 
        process.Start();
        process.StandardInput.AutoFlush = true;
        process.StandardInput.WriteLine("exit");
 
        //獲取cmd窗口的輸出信息  
        string output = process.StandardOutput.ReadToEnd(); 
        process.WaitForExit();
        process.Close(); 
        return output;
    }
}
ProcessCore.ExecuteInCmd("ipconfig");
ProcessCore.ExecuteOutCmd("-I http://www.baidu.com", @"C:\curl.exe");

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。

推薦閱讀:

    None Found