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.jp
if you want to keep the cmd window open or want to use it in winform/wpf then use it like this
string strCmdText; //For Testing strCmdText= "/K ipconfig"; System.Diagnostics.Process.Start("CMD.exe",strCmdText);
/K
Will keep the cmd window open