Pytanie : Dlaczego format Process.StartInfo.Arguments z przestrzeń w the argument?

cześć,

I am ftp rozkaz od mój C# zastosowanie using Process.
I mieć the mój kod w mój program.
I przestrzeń w the pierwszy argument the Proces i ono być dziwny i formatting properly.

scriptfile = "C:\Program files\PR Dziwny \ AddIns \ PR Most \ Upload \ UploadScript.txt";
s.Filename = "File1";

Process P = nowy proces ();
P.EnableRaisingEvents = true;
                    P.Exited += P_Exited;
P.StartInfo.FileName = filename;
P.StartInfo.Arguments = scriptfile + s.Filename;
P.Start ();

Could zadawalać zadawalać pomagać dlaczego format stosownie gdy mieć przestrzeń?

Thank you.

Odpowiedź : Dlaczego format Process.StartInfo.Arguments z przestrzeń w the argument?

próba

P.StartInfo.Arguments = scriptfile + s.Filename;
-->
P.StartInfo.Arguments = "\ "" + scriptfile +" \" "+ s.Filename;

Inne rozwiązania  
 
programming4us programming4us