溫馨提示×

c#怎么調(diào)用cmd并輸入?yún)?shù)

c#
小億
367
2024-05-17 10:15:14
欄目: 編程語言

在C#中調(diào)用cmd并輸入?yún)?shù)可以通過Process類實(shí)現(xiàn)。下面是一個(gè)示例代碼:

using System;
using System.Diagnostics;

class Program
{
    static void Main()
    {
        string cmdPath = "cmd.exe";
        string arguments = "/C echo Hello World";

        ProcessStartInfo startInfo = new ProcessStartInfo();
        startInfo.FileName = cmdPath;
        startInfo.Arguments = arguments;
        startInfo.UseShellExecute = false;
        startInfo.RedirectStandardOutput = true;

        Process process = new Process();
        process.StartInfo = startInfo;
        process.Start();

        string output = process.StandardOutput.ReadToEnd();
        Console.WriteLine(output);

        process.WaitForExit();
    }
}

在上面的示例代碼中,我們調(diào)用了cmd并使用參數(shù)/C echo Hello World來輸出"Hello World"。您可以根據(jù)需要修改cmdPatharguments變量來執(zhí)行不同的命令和參數(shù)。

0