vote up 3 vote down star
4

Is there any way to run command prompt commands from within a C# application? If so how would I do the following:

copy /b Image1.jpg + Archive.rar Image2.jpg

This basically embeds an RAR file within JPG image. I was just wondering if there was a way to do this automatically in C#. Thank you.

flag

2  
Duplicate of stackoverflow.com/questions/181719/… (there's an answer there that does what you want). – Matt Hamilton Sep 24 at 4:27

2 Answers

vote up 3 vote down check

Hi,

this is all you have to do run shell commands from C#

string strCmdText;
strCmdText= "/C copy /b Image1.jpg + Archive.rar Image2.jpg";
System.Diagnostics.Process.Start("CMD.exe",strCmdText);

EDIT:

This is to hide the cmd window.

        System.Diagnostics.Process process = new System.Diagnostics.Process();
        System.Diagnostics.ProcessStartInfo stratInfo = new System.Diagnostics.ProcessStartInfo();
        stratInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
        stratInfo.FileName = "cmd.exe";
        stratInfo.Arguments = "/C copy /b Image1.jpg + Archive.rar Image2.jpg";
        process.StartInfo = stratInfo;
        process.Start();

Cheers

Ramesh Vel

link|flag
That works great! Can I just ask what the "/C" is for? – Nate Shoffner Sep 24 at 4:42
/C Carries out the command specified by string and then terminates – Scott Ferguson Sep 24 at 4:48
its just to tell the cmd to run and terminate (dont wait for any user input to close the window) – Ramesh Vel Sep 24 at 4:49
Thank you, one more question. Is there a way to hide the the command prompt during this? – Nate Shoffner Sep 24 at 4:53
@Nate, i have updated my answer for ur comments. pls check out – Ramesh Vel Sep 24 at 5:13
show 6 more comments
vote up 1 vote down

Yes, there is (see link in Matt Hamilton's comment), but it would be easier and better to use .NET's IO classes. You can use File.ReadAllBytes to read the files and then File.WriteAllBytes to write the "embedded" version.

link|flag
Loading whole files into memory just to append one to another is not very efficient, especially if files are big enough. – Konstantin Sep 24 at 5:34
Try to look at the spirit of the answer. The point is that .NET has more than enough IO classes and functions to do this without having to call out to the OS shell. The particular functions I mentioned may not be the best, but those were just the simplest. It doesn't make any sense at all to call out to the shell to do this. – Daniel Straight Sep 25 at 18:01

Your Answer

Get an OpenID
or

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