我有一个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输出我都是耳朵。
感谢任何帮助。
答案 0 :(得分:1)
或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)
{
}