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"); } } }
相關文章
DirectInfo.GetFiles返回數(shù)組的默認排序示例
這篇文章主要介紹了,DirectInfo.GetFiles返回數(shù)組的默認排序示例NTFS和CDFS下,是按照字母順序,而FAT下,按照文件創(chuàng)建時間順序2014-01-01Winform學生信息管理系統(tǒng)各子窗體剖析(3)
這篇文章主要針對Winform學生信息管理系統(tǒng)各子窗體進行剖析,感興趣的小伙伴們可以參考一下2016-05-05WinForm實現(xiàn)讀取Resource中文件的方法
這篇文章主要介紹了WinForm實現(xiàn)讀取Resource中文件的方法,很實用的一個功能,需要的朋友可以參考下2014-08-08