vote up 8 vote down star
2

Hi i want to invoke the Console application from my application but i would like to capture all the output generated in the console. (Remember, i dont want to save the information first in a file and then relist as i would love to receive it as live)

flag

60% accept rate
If anyone knows how to do this for coloured console output, please answer this question stackoverflow.com/questions/1529254/… – Si Oct 7 at 3:23

3 Answers

vote up 8 vote down check

This can be quite easily achieved using the ProcessStartInfo.RedirectStandardOutput Property. A full sample is contained in the linked MSDN documentation; the only caveat is that you may have to redirect the standard error stream as well to see all output of your app.

link|flag
vote up 4 vote down

Use ProcessInfo.RedirectStandartOutput to redirect the output when creating your console process.

Then you can use Process.StandardOutput to read the program output.

The second link has a sample code how to do it.

link|flag
vote up -2 vote down

Assuming you are invoking the app from console, Doesn't "your_command" > "fileName" do that? Or is it something else

link|flag

Your Answer

Get an OpenID
or

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