running dos command line from C#?
问题 I am trying to run this command from command-line prompt: "D:\\fiji\\fiji.exe -macro D:\\fiji\\macros\\FFTBatch.ijm --headless" It works perfect when I type it in a command-line console. However, when I was trying to make it work from C# application, it failed. I tried following, but seems the command above did not get executed somehow: string fijiCmdText = "D:\\fiji\\fiji.exe -macro D:\\fiji\\macros\\FFTBatch.ijm --headless"; System.Diagnostics.Process.Start("cmd.exe", fijiCmdText); Anyone