欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

C# 調(diào)用執(zhí)行命令行窗口 (CMD)

admin
2024年9月10日 21:42 本文熱度 551

摘要


在C#中,有時(shí)需要執(zhí)行命令行指令來完成特定的任務(wù),這個(gè)用起來特別簡(jiǎn)單,用好了靈活性極大。這可能包括運(yùn)行腳本、管理服務(wù)、獲取系統(tǒng)信息等。C# 提供了 System.Diagnostics 命名空間中的 Process 類來啟動(dòng)和管理系統(tǒng)進(jìn)程,包括命令行窗口(cmd.exe)。

正文


應(yīng)用場(chǎng)景

  1. 自動(dòng)化構(gòu)建和部署:使用命令行工具如 MSBuild 或者 PowerShell 腳本來編譯和部署應(yīng)用程序。

  2. 系統(tǒng)管理:執(zhí)行系統(tǒng)管理任務(wù),如啟動(dòng)或停止服務(wù),管理文件和目錄等。

  3. 網(wǎng)絡(luò)操作:運(yùn)行網(wǎng)絡(luò)診斷工具如 ping、ipconfig 或自定義網(wǎng)絡(luò)操作腳本。

  4. 數(shù)據(jù)庫(kù)操作:執(zhí)行數(shù)據(jù)庫(kù)備份、還原或運(yùn)行 SQL 腳本。

  5. 第三方工具集成:調(diào)用 Git、Docker 或其他命令行工具進(jìn)行自動(dòng)化操作。

示例 1: 執(zhí)行簡(jiǎn)單命令

public class CmdExample{      public static void ExecuteCommand(string command)      {            ProcessStartInfo processStartInfo = new ProcessStartInfo("cmd", $"/c {command}")            {                  RedirectStandardOutput = true,                  UseShellExecute = false,                  CreateNoWindow = true            };
using (Process process = Process.Start(processStartInfo)) { using (StreamReader reader = process.StandardOutput) { string result = reader.ReadToEnd(); Console.WriteLine(result); } } }}

使用此方法可以執(zhí)行任何簡(jiǎn)單的命令行指令。例如,獲取當(dāng)前目錄下的文件列表:

static void Main(){      CmdExample.ExecuteCommand("dir");}

示例 2: 運(yùn)行批處理腳本

public class BatchScriptRunner{      public static void RunBatchScript(string scriptPath)      {            ProcessStartInfo processStartInfo = new ProcessStartInfo(scriptPath)            {                  RedirectStandardOutput = true,                  UseShellExecute = false,                  CreateNoWindow = true            };
using (Process process = Process.Start(processStartInfo)) { using (StreamReader reader = process.StandardOutput) { string result = reader.ReadToEnd(); Console.WriteLine(result); } } }}

調(diào)用批處理腳本 a.bat

static void Main(){      BatchScriptRunner.RunBatchScript(@"d:\a.bat");}

示例 3: 執(zhí)行具有復(fù)雜輸出的命令

public class ComplexCommandExecutor{      public static void ExecuteComplexCommand(string command)      {            ProcessStartInfo processStartInfo = new ProcessStartInfo("cmd", $"/c {command}")            {                  RedirectStandardOutput = true,                  RedirectStandardError = true,                  UseShellExecute = false,                  CreateNoWindow = true            };
StringBuilder output = new StringBuilder(); StringBuilder error = new StringBuilder();
using (Process process = new Process()) { process.StartInfo = processStartInfo; process.OutputDataReceived += (sender, args) => output.AppendLine(args.Data); process.ErrorDataReceived += (sender, args) => error.AppendLine(args.Data);
process.Start();
process.BeginOutputReadLine(); process.BeginErrorReadLine();
process.WaitForExit();
Console.WriteLine("Output:"); Console.WriteLine(output.ToString()); Console.WriteLine("Error:"); Console.WriteLine(error.ToString()); } }}
static void Main(){ ComplexCommandExecutor.ExecuteComplexCommand("ipconfig /all");}

結(jié)論

在C#中調(diào)用執(zhí)行命令行窗口可以非常靈活和強(qiáng)大,但也需要注意安全性和錯(cuò)誤處理。始終驗(yàn)證外部輸入,避免注入攻擊,并確保處理任何可能的異常和錯(cuò)誤輸出。正確使用時(shí),它可以是自動(dòng)化和系統(tǒng)集成的強(qiáng)大工具。


該文章在 2024/9/13 9:21:43 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉(cāng)儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購(gòu)管理,倉(cāng)儲(chǔ)管理,倉(cāng)庫(kù)管理,保質(zhì)期管理,貨位管理,庫(kù)位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved