Using the ProcessStartInfo and Process I would like start a program (e g getdiff.exe) and then read all the output that program produces. Later I will use the data in a more constructive way put right now I just want to print the data to ensure it works. However the program doesn’t terminate as it should. Does anyone se why? Thank you in advanced.

ProcessStartInfo psi = new ProcessStartInfo("getdiff.exe");
psi.Arguments = "DIFF";
psi.UseShellExecute = false;                
psi.RedirectStandardInput = true;
psi.WorkingDirectory = "c:\\test";

Process p = Process.Start(psi);
string read = p.StandardOutput.ReadToEnd();
p.WaitForExit();

Console.WriteLine(p);
Console.WriteLine("Complete");

p.Close();

Changing the program to this got it working correctly:

ProcessStartInfo psi = new ProcessStartInfo("getdiff.exe");
psi.Arguments = "DIFF";
psi.UseShellExecute = false;                
psi.RedirectStandardInput = true;
psi.WorkingDirectory = "c:\\test";

Process p = Process.Start(psi);
StreamReader read = p.StandardOutput;

while (read.Peek() >= 0)
    Console.WriteLine(read.ReadLine());

Console.WriteLine("Complete");
p.WaitForExit();
p.Close();
link|improve this question

Which part of it is not terminating as it should? Your application, or the called process? – Jaymz Jun 21 '11 at 11:31
Why should it terminate? Is it console application? Something else? – Shadow Wizard Jun 21 '11 at 11:40
This is a function in a bigger program. But when running this alone the program never terminates. So it's not healthy. – Teletha Jun 21 '11 at 11:56
feedback

4 Answers

The MSDN provides a good example how a process input/output can be redirected. ReadToEnd() cannot determine the end of the stream correctly. The MSDN says:

ReadToEnd assumes that the stream knows when it has reached an end. For interactive protocols, in which the server sends data only when you ask for it and does not close the connection, ReadToEnd might block indefinitely and should be avoided.

EDIT: Another reason to avoid ReadToEnd(): A very fast process will cause an exception, because the stream has to be redirected BEFORE the program output any data.

link|improve this answer
feedback

Not sure if it's related, but you do psi.RedirectStandardInput = true; without doing something with the resulting stream. Maybe, somehow, the application requires that the input stream is "closed" before it exits? So try myProcess.StandardInput.Close().

link|improve this answer
I also saw that. And psi.RedirectStandardOutput = true; terminates the program. The output is strange but it terminates. – Teletha Jun 21 '11 at 11:55
feedback

Try out this code instead,

p.CloseMainWindow()

link|improve this answer
feedback
up vote 0 down vote accepted
ProcessStartInfo psi = new ProcessStartInfo("getdiff.exe");
psi.Arguments = "DIFF";
psi.UseShellExecute = false;                
psi.RedirectStandardInput = true;
psi.WorkingDirectory = "c:\\test";

Process p = Process.Start(psi);
StreamReader read = p.StandardOutput;

while (read.Peek() >= 0)
    Console.WriteLine(read.ReadLine());

Console.WriteLine("Complete");
p.WaitForExit();
p.Close();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.