からコードを出力を取得できません以下のとおりである。はcmd.exeを実行
ProcessStartInfo startInfo = new ProcessStartInfo("cmd", "/c" + command);
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.WindowStyle = ProcessWindowStyle.Normal;
startInfo.Arguments = arguments;
startInfo.RedirectStandardError = true;
startInfo.RedirectStandardOutput = true;
Process process = Process.start(startInfo);
StreamReader srOutput = process.StandardOutput;
string output = srOutput.ReadToEnd();
コマンドは、私は、変数output
COS内の「システムは指定されたファイルを見つけることができません」を取得することを期待rmdir /s /q 123
です"123"は存在しないファイルパスです。しかし、output
は空の文字列です。なぜ、どのように私は出力を得ることについて行くshld?
まだ疑問があります。下記のコメントを参照してください... – yeeen