欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

C#調用CMD命令實例

 更新時間:2014年08月30日 11:53:27   作者:石圣  
這篇文章主要介紹了C#調用CMD命令實例本文只是給出一個比較簡單的、入門級的例子,更多高級的操作技巧請參閱相關文章,需要的朋友可以參考下

有時候有一些DOS命令需要我們在執(zhí)行程序的時候調用,這需要使用C#提供的相關接口。

代碼如下,很簡單,相信大家都能看懂,我就不贅述了。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;//這個是進行dos命令調用

namespace ExecuteCMD
{
  //實現(xiàn)讀取Excel文件的功能
  class ExecuteCMD
  {

    public static void CreateDll(){
      Process p = new Process();
      p.StartInfo.FileName = "cmd.exe";
      p.StartInfo.UseShellExecute = false;
      p.StartInfo.RedirectStandardInput = true;
      p.StartInfo.RedirectStandardOutput = true;
      p.StartInfo.RedirectStandardError = true;
      p.StartInfo.CreateNoWindow = false;
      p.Start();
      p.StandardInput.WriteLine("systeminfo");
      Console.Write(p.StandardOutput.ReadToEnd());
      p.StandardInput.WriteLine("exit");
    }
  }
}

相關文章

最新評論