vote up 0 vote down star
1

Is it possible to run a console application and get its outputted contents back as a string in C#?

I want to be able to use parameters when running the console app:

c:\files\app.exe -a 1 -b 2 -c 3
flag

2 Answers

vote up 3 vote down check

You want to use the Process class's Start method and redirect the output to a StreamReader.

Here's an example.

link|flag
thanks, exactly what i was looking for. is there anyway to stop the main form from not responding until the console app returns? – Tony Moriaci May 23 at 18:31
1  
Put it in a BackgroundWorker. ( msdn.microsoft.com/en-us/library/… ) – lc May 23 at 18:46
vote up 1 vote down

This isn't the clearest thing I've read today, but I can only assume you're spawning a process (with Process.Start()?) and want to get it's output back into your program.

If so, Process.StandardOutput is probably what you're looking for. For example:

System.Diagnostics.ProcessStartInfo startInfo = 
    new System.Diagnostics.ProcessStartInfo(@"c:\files\app.exe",@"-a 1 -b 2 -c 3"); 
startInfo.UseShellExecute = false; 
startInfo.RedirectStandardOutput = true; 
Process p = Process.Start(startInfo);
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
link|flag
i kept getting errors from this one saying that new process does not have a constructor that accepts only 1 param – Tony Moriaci May 23 at 18:33
Sorry about that. Fixed it. – lc May 23 at 18:46

Your Answer

Get an OpenID
or

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