15

我正在执行命令提示符命令,如下所示:

string cmd = "/c dir" ; 
System.Diagnostics.Process proc = new System.Diagnostics.Process(); 
proc.StartInfo.FileName = "cmd.exe";
proc.StartInfo.Arguments = cmd; 
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardOutput = true; 
proc.Start();

如何获得命令的输出?

4

1 回答 1

20

试试这个

string output = proc.StandardOutput.ReadToEnd();
于 2013-04-04T20:25:59.453 回答