C
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = false;
startInfo.UseShellExecute = true;
startInfo.FileName = compilerPath2 + "\\pawncc.exe";
startInfo.Arguments = "\"" + currentModePath + "\"";
Process.Start(startInfo);
Was ist daran falsch?
Möchte schlicht und einfach einen PAWN Gamemode damit kompilieren.
Im Pfad sind Leerzeichen. Liegt es daran? Wenn ja, wie kann ich dieses Problem umgehen?
Danke im Voraus.