我想将 cmd.exe 输出重定向到某处,当命令为一行时,下面的代码有效:
Process p = new Process()
{
StartInfo = new ProcessStartInfo("cmd")
{
UseShellExecute = false,
RedirectStandardInput = true,
RedirectStandardOutput = true,
CreateNoWindow = true,
Arguments = String.Format("/c \"{0}\"", command),
}
};
p.OutputDataReceived += (s, e) => Messagebox.Show(e.Data);
p.Start();
p.BeginOutputReadLine();
p.WaitForExit();
但是像 WriteLine() 这样的一系列命令怎么样:
p.StandardInput.WriteLine("cd...");
p.StandardInput.WriteLine("dir");
在这种情况下如何获得输出?