this question could seem as duplicate, i have tried all the suggested solution but in vain , i wanna redirect python script output using this code :
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "python.exe";
proc.StartInfo.Arguments = Application.StartupPath.Replace("\\bin\\Debug", "") + "\\scripts\\test.py";
proc.OutputDataReceived += OutputDataReceived;
proc.ErrorDataReceived += ErrorDataReceived;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
proc.Start();
//proc.WaitForExit();
StringBuilder q = new StringBuilder();
while (!proc.HasExited)
{
q.Append(proc.StandardOutput.ReadToEnd());
}
string r = q.ToString();
r = proc.StandardOutput.ReadToEnd();
MessageBox.Show(r);
}
private void OutputDataReceived(object sender, DataReceivedEventArgs args)
{
//textOutput.Text += args.Data;
MessageBox.Show(args.Data);
}
the python script contains print "hello test" i tried unbuffering output but vainly.
Any help please.
I'm using VS 2010 .NET 4.0 , Python 2.7 , winXP sp3.