I have a exe file in a folder and another .mobi file in the same folder.
I usually open cmd set the path to that folder and then type the command in cmd which will be "xyz.exe strip_source 123.mobi "
I need to do this automatically using c#.
I saw few post here but none of them say how to do this.
I tired using process.start but that just starts the cmd.exe.
Can someone guide me through this?
Process.Startis exactly how you would start an external process. What did you try and how did it not work as expected?