I need to launch command prompt from my application and set arguments for it.

System.Diagnostics.Process.Start("CMD.exe", "\"C:\Program Files\My Program\program.exe\" \"C:\Program Files\My Program\Program2.exe\"");

The line abowe would be good for me, but he problem is quotes. To have quotes in cmd i need to escape them, but when i escape them, i get escape symbols \ in my command, so it doesnt work.
Anybody has an idea, how to solve this problem?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 1 down vote accepted
const string SystemDirectory = @"C:\Windows\System32";

With quoutes:

const string SystemDirectory = @"""C:\Windows\System32""";
link|improve this answer
And how exactly this should help? both cmd parameters have spaces in paths, so they have to be quoted if i use @"path" i get parameters without qoutes and that does not work. – JNM Feb 2 at 9:35
@JNM, try using this (single line): const string CommandLine = @"""C:\Windows\System32\program.exe"" ""C:\input.txt"""; – Serge Feb 2 at 9:38
I tried, but when i use "" i get \" in command line instead of " – JNM Feb 2 at 9:42
This is how it works for me. Is there something wrong? – Serge Feb 2 at 10:24
This is my code: string command = @"""C:\Program Files (x86)\DBF Viewer 2000\dbview.exe"" ""C:\temp\serviceFiles\test.dbf"" /EXPORT:C:\temp\serviceFiles\test.csv /SEP "; Process.Start("CMD.exe", command); and the command given to command line is \"C:\\Program Files (x86)\\DBF Viewer 2000\\dbview.exe\" \"C:\\temp\\serviceFiles\\test.dbf\" /EXPORT:C:\\temp\\serviceFiles\\test.csv /SEP which is wrong. intead of \" it should have only " – JNM Feb 2 at 12:29
show 8 more comments
feedback

Your code should look like this:

Process.Start("CMD.exe",
              "\"C:\\Program Files\\My Program\\program.exe\" " +
              "\"C:\\Program Files\\My Program\\Program2.exe\"");

Note the double backslashes in the path.

An alternative would be to use a verbatim string (Note the @ sign in front of the string). In that case you need to escape the quotes as two quotes:

Process.Start("CMD.exe",
              @"""C:\Program Files\My Program\program.exe"" " +
              @"""C:\Program Files\My Program\Program2.exe""");
link|improve this answer
You can't jump lines like this in the middle of a string. It's allowed only for verbatim strings, but it'll insert a new line into the string, which is not expected here. Maybe a string.Format() would be more appropriate here? – ken2k Feb 2 at 9:51
@ken2k: You are right, thanks for spotting it. I fixed it. – Daniel Hilgarth Feb 2 at 9:54
Still, it doesn't work. Instead of "" i get \" ant in command line thar does not work. – JNM Feb 2 at 12:26
feedback

Your Answer

 
or
required, but never shown

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