C# 单个 CMD 进程的多个输入和输出

发布于 2024-12-09 17:45:31 字数 763 浏览 0 评论 0原文

您好,我如何向我的应用程序已启动的 cmd 进程输入命令,并将输出重定向回来。之后我想再次输入我的内容。

 static void Main(string[] args)
        {
            ProcessStartInfo psi = new ProcessStartInfo();
            psi.CreateNoWindow = false;
            psi.FileName = "cmd.exe";
            psi.Arguments = "/k";
            psi.UseShellExecute = false;
            psi.RedirectStandardOutput = true;
            psi.RedirectStandardInput = true;
            Process p = new Process();
            p.StartInfo = psi;            
            p.Start();


            while(true)
            {
                p.StandardInput.WriteLine(Console.ReadLine());


                Console.WriteLine(p.StandardOutput.ReadToEnd());

            }

            Console.Read();

        }

Hi how do i enter a command to a cmd process which is already started by my application and also to redirect the output back. After that i want to enter my input again.

 static void Main(string[] args)
        {
            ProcessStartInfo psi = new ProcessStartInfo();
            psi.CreateNoWindow = false;
            psi.FileName = "cmd.exe";
            psi.Arguments = "/k";
            psi.UseShellExecute = false;
            psi.RedirectStandardOutput = true;
            psi.RedirectStandardInput = true;
            Process p = new Process();
            p.StartInfo = psi;            
            p.Start();


            while(true)
            {
                p.StandardInput.WriteLine(Console.ReadLine());


                Console.WriteLine(p.StandardOutput.ReadToEnd());

            }

            Console.Read();

        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文