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

C#調(diào)用CMD命令實(shí)例

 更新時(shí)間:2014年08月30日 11:53:27   作者:石圣  
這篇文章主要介紹了C#調(diào)用CMD命令實(shí)例本文只是給出一個(gè)比較簡(jiǎn)單的、入門級(jí)的例子,更多高級(jí)的操作技巧請(qǐng)參閱相關(guān)文章,需要的朋友可以參考下

有時(shí)候有一些DOS命令需要我們?cè)趫?zhí)行程序的時(shí)候調(diào)用,這需要使用C#提供的相關(guān)接口。

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

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;//這個(gè)是進(jìn)行dos命令調(diào)用

namespace ExecuteCMD
{
  //實(shí)現(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");
    }
  }
}

相關(guān)文章

最新評(píng)論