使用C#挂起中的进程调用cmd.exe

本文关键字:调用 cmd exe 进程 挂起 使用 | 更新日期: 2023-09-27 17:57:40

我正试图从cmd.exe(测试"DIR"命令)中获取标准,并将其放入文本框中。然而,每当我启动该进程时,程序就会挂起(没有按钮按下)。

private void cmd_test()
{
    Process pr = new Process()
    {
        StartInfo = {
            FileName = "cmd.exe",
            UseShellExecute = true,
            CreateNoWindow = true,
            RedirectStandardOutput = true,
            RedirectStandardInput = true,
            RedirectStandardError = true,
        }
    };
    pr.Start();
    pr.StandardInput.WriteLine("DIR");
    TextBox1.Text = pr.StandardOutput.ReadToEnd();
}

我还在StartInfo块中尝试了Arguments = "DIR",而不是WriteLine。

如何在不挂起命令的情况下将命令正确发送到cmd.exe?

使用C#挂起中的进程调用cmd.exe

开始:

  using (var p = new Process())
  {
    p.StartInfo.CreateNoWindow = true;
    p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
    p.StartInfo.UseShellExecute = false;
    p.StartInfo.RedirectStandardOutput = true;
    p.StartInfo.FileName = "cmd.exe";
    p.StartInfo.Arguments = "/C dir";
    p.Start();
    var output = p.StandardOutput.ReadToEnd();
    p.WaitForExit();
    richTextBox1.Text = output;
  }