I'm programming an application which also happens to start Crysis 2, however a small problem with starting the application is that I need to use "\b" which create some sort of special character.
Where path = D:\Steam\steamapps\common\crysis2
I know that isn't where the problem is, it's with that \b thing, and I can't seem to figure out away around it.
Code:
Process crysis2 = new Process();
crysis2.StartInfo.FileName = "Crysis2";
crysis2.StartInfo.WorkingDirectory = @path+"\bin32";
crysis2.Start();
Where path = D:\Steam\steamapps\common\crysis2
I know that isn't where the problem is, it's with that \b thing, and I can't seem to figure out away around it.