up vote 2 down vote favorite
1
share [g+] share [fb]

How can I set up two external executables to run from a c# application where stdout from the first is routed to stdin from the second?

I know how to run external programs by using the Process object, but I don't see a way of doing something like "myprogram1 -some -options | myprogram2 -some -options". I'll also need to catch the stdout of the second program (myprogram2 in the example).

In PHP I would just do this:

$descriptorspec = array(
            1 => array("pipe", "w"),  // stdout
        );

$this->command_process_resource = proc_open("myprogram1 -some -options | myprogram2 -some -options", $descriptorspec, $pipes);

And $pipes[1] would be the stdout from the last program in the chain. Is there a way to accomplish this in c#?

link|improve this question

If you're doing a lot of this type of code, you might want to check out Windows PowerShell. – TrueWill Aug 28 '09 at 23:10
I'm actually doing this in Linux, but thanks for the tip! – Lytithwyn Aug 31 '09 at 12:30
I never knew about the pipe operator and I logged in just to tell you THANK YOU for that. It is an amazing operator. microsoft.com/resources/documentation/windows/xp/all/proddocs/… – jocull Mar 4 '10 at 0:50
feedback

3 Answers

up vote 3 down vote accepted

Here's a basic example of wiring the standard output of one process to the standard input of another.

Process out = new Process("program1.exe", "-some -options");
Process in = new Process("program2.exe", "-some -options");

out.UseShellExecute = false;

out.RedirectStandardOutput = true;
in.RedirectStandardInput = true;

using(StreamReader sr = new StreamReader(out.StandardOutput))
using(StreamWriter sw = new StreamWriter(in.StandardInput))
{
  string line;
  while((line = sr.ReadLine()) != null)
  {
    sw.WriteLine(line);
  }
}
link|improve this answer
This is exactly what I needed to see. Thank you so much! – Lytithwyn Aug 31 '09 at 12:24
feedback

You could use the System.Diagnostics.Process class to create the 2 external processes and stick the in and outs together via the StandardInput and StandardOutput properties.

link|improve this answer
feedback

Use System.Diagnostics.Process to start each process, and in the second process set the RedirectStandardOutput to true, and the in the first RedirectStandardInput true. Finally set the StandardInput of the first to the StandardOutput of the second . You'll need to use a ProcessStartInfo to start each process.

Here is an example of one of the redirections.

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.