国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#執行DOS命令的方法

2019-10-29 21:45:40
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了C#執行DOS命令的方法,涉及針對進程的調用以及系統DOS命令的使用,具有不錯的實用價值,需要的朋友可以參考下
 

本文實例講述了C#執行DOS命令的方法。分享給大家供大家參考。具體實現方法如下:

在c#程序中,有時會用到調用cmd命令完成一些功能,本文介紹的如下方法,可實現c#執行DOS命令,并返回結果的功能。

 

復制代碼代碼如下:
//dosCommand Dos命令語句  
public string Execute(string dosCommand)  
{  
    return Execute(dosCommand, 10);  
}  
/// <summary>  
/// 執行DOS命令,返回DOS命令的輸出  
/// </summary>  
/// <param name="dosCommand">dos命令</param>  
/// <param name="milliseconds">等待命令執行的時間(單位:毫秒),  
/// 如果設定為0,則無限等待</param>  
/// <returns>返回DOS命令的輸出</returns>  
public static string Execute(string command, int seconds)  
{  
    string output = ""; //輸出字符串  
    if (command != null && !command.Equals(""))  
    {  
 Process process = new Process();//創建進程對象  
 ProcessStartInfo startInfo = new ProcessStartInfo();  
 startInfo.FileName = "cmd.exe";//設定需要執行的命令  
 startInfo.Arguments = "/C " + command;//“/C”表示執行完命令后馬上退出  
 startInfo.UseShellExecute = false;//不使用系統外殼程序啟動  
 startInfo.RedirectStandardInput = false;//不重定向輸入  
 startInfo.RedirectStandardOutput = true; //重定向輸出  
 startInfo.CreateNoWindow = true;//不創建窗口  
 process.StartInfo = startInfo;  
 try  
 {  
     if (process.Start())//開始進程  
     {  
  if (seconds == 0)  
  {  
      process.WaitForExit();//這里無限等待進程結束  
  }  
  else  
  {  
      process.WaitForExit(seconds); //等待進程結束,等待時間為指定的毫秒  
  }  
  output = process.StandardOutput.ReadToEnd();//讀取進程的輸出  
     }  
 }  
 catch  
 {  
 }  
 finally  
 {  
     if (process != null)  
  process.Close();  
 }  
    }  
    return output;  
}

 

希望本文所述對大家的C#程序設計有所幫助。


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 防城港市| 吉木萨尔县| 晋宁县| 华容县| 大兴区| 昆明市| 文山县| 涿鹿县| 尉犁县| 昆山市| 尚义县| 丁青县| 永靖县| 双鸭山市| 平昌县| 新蔡县| 疏附县| 兰考县| 苍山县| 泸水县| 哈巴河县| 砚山县| 朝阳县| 广汉市| 乐山市| 罗平县| 封开县| 曲阜市| 镇康县| 深水埗区| 涟水县| 叙永县| 京山县| 宕昌县| 三门县| 绥芬河市| 新龙县| 波密县| 公安县| 罗山县| 庄河市|