System.Diagnostics.Process.Kill无法正常工作。 C#

时间:2014-12-05 20:19:25

标签: c# .net winforms backgroundworker system.diagnostics

我有WinForm (.NET 4.5 C#)个应用程序,我BackgroundWorker使用以下代码开始新的Process

    void bw_DoWork(object sender, DoWorkEventArgs e)
    {
        BackgroundWorker bw = sender as BackgroundWorker;

        string fileName_ = e.Argument.ToString();

        Process myProcess = new Process();
        int exitCode = 0;

        try
        {
            if (!File.Exists(fileName_))
            {
                throw new FileNotFoundException("Failed to locate " + fileName_);

            }


            #region Start Info:
            ProcessStartInfo startInfo = new ProcessStartInfo(fileName_);
            startInfo.UseShellExecute = false;
            startInfo.CreateNoWindow = true;
            startInfo.RedirectStandardOutput = true;
            startInfo.RedirectStandardError = true;

            myProcess.StartInfo = startInfo; 
            #endregion

            myProcess.Start();
            StreamReader myStreamReader = myProcess.StandardOutput;

            while (!myProcess.HasExited)
            {
                myProcess.Refresh();
                string output = myStreamReader.ReadLine();
                bw.ReportProgress(0, output);

                if (bw.CancellationPending)
                {
                    myStreamReader.ReadToEnd();
                    myStreamReader.Close();

                    myProcess.StandardError.ReadToEnd();
                    myProcess.StandardError.Close();
                    myProcess.Kill();
                    break;

                }

            }


            //myProcess.WaitForExit();


            bw.ReportProgress(0, string.Format("Process {0}  exit code: {1}", fileName_, myProcess.ExitCode));

            exitCode = myProcess.ExitCode;
            if (exitCode != 0 && !bw.CancellationPending)
            {
                string error = myProcess.StandardError.ReadToEnd();


                myProcess.Close();
                myProcess = null;

                bw.ReportProgress(0, "Process Failed with message:" + Environment.NewLine + error);
            }

            myProcess.Close();

        }
        catch (Exception ex)
        {                

            Console.WriteLine(ex);

        }
        finally
        {
            myProcess.Dispose();
            myProcess = null;

        }

        e.Result = exitCode;
    }

这部分工作正常,但一旦我尝试使用myProcess.Kill();后台工作程序停止,一切正常,但我可以看到我的进程仍在从任务管理器运行,即使我关闭我的应用程序,我仍然可以在任务管理器中看到我的进程正在运行。

我的问题是,如何正确杀死这个过程?

我希望我能清楚地描述我的问题,如果您需要更多信息,请随时告诉我。

任何帮助将不胜感激。

// -------------- 2014年12月8日更新--------------------- //

@RogerN我删除了Process.WaitForExit()并添加了myStreamReader.ReadToEnd(),即使在应用程序关闭后,相同的问题进程仍处于活动状态。

@phillip这是我从WinForm调用的控制台应用程序(独立* .exe)。

@Peter Duniho是的我确信它与任务管理器中的过程相同。删除WaitForExit()没有解决任何问题,BW实际上完成没有任何问题。

@ L.B你会建议什么选择?

1 个答案:

答案 0 :(得分:3)

可能会发生死锁,因为在读取整个输出流之前调用Process.WaitForExit()。由于您已重定向输出流,因此必须先读取关联流中的所有数据,然后才能正常退出。