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)
|
3
|
|||
|
|
|
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. |
||
|
|
|
|
Assuming you are invoking the app from console, Doesn't "your_command" > "fileName" do that? Or is it something else |
||
|
|
|
|
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. |
||
|
|
