1

我有一个从 C# 类库运行的命令行可执行文件。在一些非常罕见的情况下,可执行文件会因为传递给它的命令行数据而挂起。不幸的是,这会导致调用 c# DLL 的应用程序在无限期地等待进程退出时挂起。

如果命令行 exe 没有在 1 秒内完成执行,它永远不会退出。我想做的是在进程启动后生成一个计时器,如果它在几秒钟内没有退出,则强制关闭进程。

这里最好的方法是什么?该解决方案需要对性能的影响最小,因为此命令行过程是高度重复性任务的瓶颈。

编辑:为什么我应该使用 System.Timer 而不是 Threading.Timer 或反之亦然?

            ProcessStartInfo startInfo = new ProcessStartInfo();
            startInfo.CreateNoWindow = false;
            startInfo.UseShellExecute = true;
            startInfo.WorkingDirectory = workingDirectory;
            startInfo.FileName = commandLineExe;
            startInfo.WindowStyle = ProcessWindowStyle.Hidden;
            startInfo.Arguments = strArguments;



            // Call WaitForExit and then the using statement will close.
            using (Process exeProcess = Process.Start(startInfo))
            {

                exeProcess.WaitForExit();
            }

请不要建议我应该尝试找出命令行应用程序挂起的原因,或者我应该将命令行功能重构到源代码中。我们正在积极解决这个问题,但应用程序的稳定性需要放在首位。

4

1 回答 1

5

只需添加:

// Call WaitForExit and then the using statement will close.
using (Process exeProcess = Process.Start(startInfo)) {
    if(!exeProcess.WaitForExit(1000))
          exeProcess.Kill();
}
于 2009-09-16T17:50:08.663 回答