Dave
Dave

Reputation: 97

How do I capture command-line text that is not sent to stdout?

I am using the LAME command line mp3 encoder in a project. I want to be able to see what version someone is using. if I just execute LAME.exe with no paramaters i get, for example:

C:\LAME>LAME.exe
LAME 32-bits version 3.98.2 (http://www.mp3dev.org/)

usage: blah blah
blah blah

C:\LAME>

if i try redirecting the output to a text file using > to a text file the text file is empty. Where is this text accessable from when running it using System.Process in c#?

Upvotes: 6

Views: 1112

Answers (4)

Dave
Dave

Reputation: 97

        System.Diagnostics.Process proc = new System.Diagnostics.Process();
        proc.EnableRaisingEvents = false;
        proc.StartInfo.FileName = @"C:\LAME\LAME.exe";
        proc.StartInfo.RedirectStandardError = true;
        proc.StartInfo.UseShellExecute = false;

        proc.Start();
        string output = proc.StandardError.ReadToEnd();


        proc.WaitForExit();

        MessageBox.Show(output);

worked. thanks all!

Upvotes: 1

villintehaspam
villintehaspam

Reputation: 8744

It might be sent to stderr, have you tried that?

Check out Process.StandardError.

Try it out using

C:\LAME>LAME.exe 2> test.txt

Upvotes: 0

Reed Copsey
Reed Copsey

Reputation: 564373

It may be output to stderr instead of stdout. You can redirect stderr by doing:

LAME.exe 2> textfile.txt

If this shows you information, then LAME is outputting to the standard error stream. If you write a wrapper in C#, you can redirect the standard error and output streams from ProcessStartInfo.

Upvotes: 3

Arthur Kalliokoski
Arthur Kalliokoski

Reputation: 1647

It's probably using stderr. cmd.exe doesn't allow you to redirect stderr, and the only way I've ever redirected it is with a djgpp tool.

Upvotes: 0

Related Questions