显示正在运行的cmd进程的输出

时间:2013-04-15 19:07:19

标签: c#

我有一个C#代码,它使用命令提示符来调用python脚本。该脚本目前运行大约需要25秒。在命令提示符下运行时,python脚本有几个输出,直到最后输出“done”。我的C#代码运行脚本,但如果我使用“WaitForExit”,则永远不会关闭命令提示符。所以我的想法是我需要某种逻辑来检查是否已经输出“完成”,但互联网对方法论并不是很有帮助。

这就是我所拥有的,它目前只输出第一行,“Microsoft Windows [Version 6.1.7601]”。显然,没有好处。

var p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.WorkingDirectory = @"C:\Optimization";
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;


p.Start();


p.StandardInput.WriteLine(@"ipy spot_for_labview.py");

    StreamReader mySR = p.StandardOutput;
    string mystr = mySR.ReadLine();
    Debug.WriteLine(mystr);



p.WaitForExit(25000);  //25000 is a placeholder until better method found.

p.Close();

如果有任何关闭完成后的过程,或者获得所有的cmd输出我都是耳朵。

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

你尝试过这个活动吗? Process.OutputDataReceived活动

Process.ErrorDataReceived Event

这是来自MSDN的代码

    Process sortProcess;
    sortProcess = new Process();
    sortProcess.StartInfo.FileName = "Sort.exe";
    sortProcess.OutputDataReceived += new DataReceivedEventHandler(SortOutputHandler);

... .... ...

private static void SortOutputHandler(object sendingProcess, 
            DataReceivedEventArgs outLine)
        {
}