c#中的Process类可方便的调用外部程序,所以我们可以通过调用cmd.exe程序加入参数 "/c " + 要执行的命令来执行一个dos命令
(/c代表执行参数指定的命令后关闭cmd.exe /k参数则不关闭cmd.exe)
1 private string RunCmd(string command)
2 {
3 //€€例一€€Process€€,€€€€一€€€€立€€程
4 Process p = new Process();
5
6 //Process€€有一€€StartInfo€€性,€€€€是ProcessStartInfo€€,包括了一些€€性和方法,下面我€€用到了他的€€€€€€性:
7
8 p.StartInfo.FileName = "cmd.exe"; //€€定程序名
9 p.StartInfo.Arguments = "/c " + command; //€€定程式€€行€€€€
10 p.StartInfo.UseShellExecute = false; //€€€€Shell的使用
11 p.StartInfo.RedirectStandardInput = true; //重定向€€€€€€入
12 p.StartInfo.RedirectStandardOutput = true; //重定向€€€€€€出
13 p.StartInfo.RedirectStandardError = true; //重定向€€€€€€出
14 p.StartInfo.CreateNoWindow = true; //€€置不€€示窗口
15
16 p.Start(); //€€€€
17
18 //p.StandardInput.WriteLine(command); //也可以用€€€€方式€€入要€€行的命令
19 //p.StandardInput.WriteLine("exit"); //不€€要€€得加上Exit要不然下一行程式€€行的€€候€€€€€€
20
21 return p.StandardOutput.ReadToEnd(); //€€€€出流取得命令€€行€€果
22
23 }