Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そのため、cmd.exe を実行するコマンドを作成しています。ただし、一部のディレクトリ名のスペースが原因でコマンドが失敗するようです。
process.StandardInput.WriteLine(this.phpPath + " " + this.phpUnitPath + " " + itemChecked);
パスを二重引用符で囲むだけです。
string command = "\"" + someFilePathWithSpaces + "\"";