I'm using process::start(PATH);
to open up the process. The problem is, sometimes it finds the file and sometimes it doesn't.
For example, this works:
process::start("C:\text.exe");
But this doesn't work:
process::start("C:\New Folder\text.exe");
Any idea what the difference is?