I am getting some odd results when trying to run a process from a string:
Process p = new Process();
p.StartInfo.WorkingDirectory = "dump";
p.StartInfo.FileName = s;
p.Start();
s = run.exe "mp4:production/CATCHUP/"
I am getting odd results such as:
"test.exe \"mp4:production/CATCHUP/\""
Obviously when this command executes, it throws an exception, how can I get rid of all of the backspaces?