I'm currently building a WPF application. I want to be able to choose a binary file, decode it using the command prompt command line arguments into a .csv file, edit its value in my application then decode it back to a binary file using a decoding tool.The only part where I'm stuck at is entering my commandline arguments into the command prompt. I googled stuff, but I could only find information on how to open the command prompt from code and not how to execute a command.

Any help would be greatly appreciated. thanks!

link|improve this question
1  
There are plenty of dupes on SO for: How do I execute a command on the shell in C#? WPF doesn't have anything to do with this question. – Merlyn Morgan-Graham Aug 21 '11 at 3:23
feedback

1 Answer

checkout Process class, it is part of the .NET framework - for more information and some sample code see its documentation at MSDN.

EDIT - as per comment:

sample code that start 7zip and reads StdOut

using System;
using System.Diagnostics;
using System.IO;

class Program
{
    static void Main()
    {
    ProcessStartInfo start = new ProcessStartInfo();
    start.FileName = @"C:\7za.exe"; // Specify exe name.
    start.UseShellExecute = false;
    start.RedirectStandardOutput = true;

    using (Process process = Process.Start(start))
    {
        // Read in all the text from the process with the StreamReader.
        using (StreamReader reader = process.StandardOutput)
        {
        string result = reader.ReadToEnd();
        Console.Write(result);
        }
    }
    }
}

some links to samples:

link|improve this answer
Add a code sample for more upvotes :) – Merlyn Morgan-Graham Aug 21 '11 at 3:20
as requested added a sample and some links to several samples... – Yahia Aug 21 '11 at 3:33
feedback

Your Answer

 
or
required, but never shown

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