How do I invoke a console application from my .NET application and capture all the output generated in the console?
(Remember, I don't want to save the information first in a file and then relist as I would love to receive it as live.)
feedback
|
|
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 application.
| ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
I've added a number of helper methods to the O2 Platform (Open Source project) which allow you easily script an interaction with another process via the console output and input (see http://code.google.com/p/o2platform/source/browse/trunk/O2_Scripts/APIs/Windows/CmdExe/CmdExeAPI.cs) Also useful for you might be the API that allows the viewing of the console output of the current process (in an existing control or popup window). See this blog post for more details: http://o2platform.wordpress.com/2011/11/26/api_consoleout-cs-inprocess-capture-of-the-console-output/ (this blog also contains details of how to consume the console output of new processes) | |||
|
feedback
|
|
From PythonTR - Python Programcıları Derneği, e-kitap, örnek:
| |||||
feedback
|