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

溫馨提示×

c#執行cmd命令是什么

c#
小億
81
2024-11-22 10:23:00
欄目: 編程語言

在C#中,要執行CMD命令,你可以使用System.Diagnostics命名空間中的Process類。以下是一個簡單的示例,展示了如何使用C#執行CMD命令:

using System;
using System.Diagnostics;

class Program
{
    static void Main()
    {
        // 要執行的CMD命令,例如:dir
        string cmdCommand = "dir";

        // 創建一個ProcessStartInfo對象,用于存儲要執行的命令和參數
        ProcessStartInfo startInfo = new ProcessStartInfo();
        startInfo.FileName = "cmd"; // 指定要執行的程序(在這里是CMD)
        startInfo.Arguments = "/c " + cmdCommand; // 添加/c參數以執行后面的命令
        startInfo.RedirectStandardOutput = true; // 將輸出重定向到控制臺
        startInfo.UseShellExecute = false; // 不使用系統外殼程序啟動程序
        startInfo.CreateNoWindow = true; // 不創建新窗口

        // 創建一個新的Process對象,并傳入ProcessStartInfo對象
        Process process = new Process();
        process.StartInfo = startInfo;

        // 啟動進程
        process.Start();

        // 讀取進程的輸出
        string output = process.StandardOutput.ReadToEnd();
        Console.WriteLine(output);

        // 等待進程完成
        process.WaitForExit();
    }
}

這個示例中,我們執行了一個簡單的dir命令,用于列出當前目錄的文件和文件夾。你可以將cmdCommand變量更改為你想要執行的CMD命令。

0
长子县| 巍山| 望都县| 搜索| 苗栗市| 大连市| 溧阳市| 平武县| 西林县| 师宗县| 奉新县| 永吉县| 淳化县| 滨州市| 石柱| 北流市| 浦东新区| 南岸区| 皋兰县| 绵阳市| 图木舒克市| 长子县| 无极县| 淄博市| 汝城县| 扶绥县| 年辖:市辖区| 松阳县| 开鲁县| 孙吴县| 鄂尔多斯市| 陵川县| 通海县| 河北省| 伊宁县| 乌兰浩特市| 宜丰县| 梨树县| 凉山| 上栗县| 普陀区|