次のようにコマンドプロンプトコマンドを実行しています。
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();
コマンドの出力を取得するにはどうすればよいですか?
これを試して
string output = proc.StandardOutput.ReadToEnd();