91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c#如何調用cmd并執行命令

c#
小億
81
2024-11-22 15:30:13
欄目: 編程語言

在C#中,你可以使用System.Diagnostics命名空間中的Process類來調用CMD并執行命令

using System;
using System.Diagnostics;

namespace CallCMDFromCSharp
{
    class Program
    {
        static void Main(string[] args)
        {
            // 要執行的命令,例如:dir
            string command = "dir";

            // 創建一個ProcessStartInfo對象,用于存儲要執行的命令和參數
            ProcessStartInfo startInfo = new ProcessStartInfo
            {
                FileName = "cmd.exe", // 指定要執行的命令(cmd.exe)
                Arguments = "/c " + command, // 傳遞要執行的命令及其參數(/c后面跟命令)
                RedirectStandardOutput = true, // 將命令的輸出重定向到Process.StandardOutput屬性
                UseShellExecute = false, // 不使用系統外殼程序啟動命令
                CreateNoWindow = true // 不創建新的窗口
            };

            // 創建一個新的Process對象,并使用ProcessStartInfo對象啟動它
            using (Process process = Process.Start(startInfo))
            {
                // 讀取命令的輸出
                string output = process.StandardOutput.ReadToEnd();

                // 等待命令執行完成
                process.WaitForExit();

                // 輸出命令的結果
                Console.WriteLine(output);
            }
        }
    }
}

這個示例將執行dir命令(在Windows上列出當前目錄的內容),并將結果輸出到控制臺。你可以根據需要修改command變量來執行其他命令。

0
来凤县| 保亭| 康马县| 永嘉县| 玉环县| 额敏县| 莱阳市| 尚义县| 涡阳县| 柘城县| 仪陇县| 辽宁省| 商水县| 手游| 舞钢市| 天峻县| 建湖县| 马尔康县| 会理县| 根河市| 静海县| 察雅县| 彭山县| 泉州市| 冀州市| 达日县| 南乐县| 山西省| 广宁县| 花莲县| 钟山县| 收藏| 茶陵县| 图木舒克市| 大厂| 凤阳县| 西充县| 祁门县| 且末县| 虹口区| 玛曲县|