I have some string with variable, e.g.

string path = @"C:\one\filename.exe" + arguments

arguments: "-s -c -d > "somedirectory\some file.txt""

I've problem with redirection output to "somedirectory\some file" If I put "\"" or char.ToString('"') it always interprets as \"...not alone "

How should I put this " character into arguments?

link|improve this question

73% accept rate
feedback

3 Answers

up vote 9 down vote accepted

You need to use \".

The debugger shows it as \", since it shows valid string literals.
However, the actual value in the string is ". (You can see this in the Text Visualizer)

In a verbatim string literal (@"..."), you need to use "" instead.

link|improve this answer
This path is in *.bat file. So why it doesn't wokr from code, and if I run manualy this bat file it work correctly? – Saint Jul 27 '11 at 14:47
1  
I'm not sure what you mean. – SLaks Jul 27 '11 at 14:47
If I run from bat file this line it works C:\one\filename.exe" -s -c -d > "somedirectory\some file.txt" pause but in code it doeasn't – Saint Jul 27 '11 at 14:49
How are you running it in code? You should use RedirectStandardOutput instead. – SLaks Jul 27 '11 at 14:52
Ooo, that's right :) Now it works fine :) Thanx – Saint Jul 27 '11 at 15:06
feedback
var arguments =  @"-s -c -d > ""somedirectory\some file.txt""";

or

var arguments = "-s -c -d > \"somedirectory\\some file.txt\"";
link|improve this answer
feedback
string args = @"-s -c -d > ""somedirectory\some file.txt"""

try that.

for more information, http://msdn.microsoft.com/en-us/library/aa691090%28v=vs.71%29.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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