使用Start.Process()时如何关闭子命令窗口;

时间:2014-07-01 03:57:45

标签: c# .net cmd

我希望在命令完成后触发子命令窗口的关闭事件。请记住,这是一个从控制台应用程序启动的后台进程,因此它永远不可见。可见的是控制台应用程序。

我尝试使用退出事件,但这不起作用。我尝试依靠CMD知道何时使用/ c,/ k和退出来关闭它。似乎都没有用。我还尝试了do while循环检查HasExited,除非我在应用程序控制台窗口中键入“exit”,否则这些都没有效果。它不会关闭,但会以某种方式触发隐藏的子命令窗口关闭。

一旦子命令完成,还有另一种关闭它的方法吗?

String msg = "echo %time%; exit;";  
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.Arguments = msg;
p.EnableRaisingEvents = true;
p.Exited += p_Exited; 
p.Start();
msg += p.StandardOutput.ReadToEnd();

非常感谢!!

1 个答案:

答案 0 :(得分:1)

我稍微修改了你的程序以运行子命令处理器,捕获其输出,然后将其写入控制台。

        char quote = '"';
        string msg = "/C " + quote + "echo %time%" + quote;
        System.Diagnostics.Process p = new System.Diagnostics.Process();
        p.StartInfo.UseShellExecute = false;
        p.StartInfo.RedirectStandardOutput = true;
        p.StartInfo.FileName = "cmd.exe";
        p.StartInfo.Arguments = msg;
        p.EnableRaisingEvents = true;
        p.Exited += (_, __) => Console.WriteLine("Exited!");
        p.Start();
        string msg1 = p.StandardOutput.ReadToEnd();

        Console.WriteLine(msg1);

这是一个完整的程序,使用略有不同的语法,但在精神上相似:

using System;
using System.Diagnostics;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            char quote = '"';
            var startInfo = new ProcessStartInfo("cmd", "/C " + quote + "echo %time%" + quote)
            { UseShellExecute = false, RedirectStandardOutput = true };

            var process = new Process { EnableRaisingEvents = true };
            process.StartInfo = startInfo;
            process.Exited += (_, __) => Console.WriteLine("Exited!");
            process.Start();
            string msg1 = process.StandardOutput.ReadToEnd();

            Console.WriteLine(msg1);

            Console.ReadLine();
        }
    }
}

或者,如this answer所示,也许只需致电DateTimeOffset.Now。如果您对查看亚秒级信息感兴趣,可以改用Stopwatch课程。

如果您更喜欢使用C#中的命令来驱动命令行,那么也是可能的。 Igor Ostrovsky describes如何将事件转换为Tasks;然后使用async / await创建一个看起来程序化的命令和响应序列。