strange cmd/power quote escaping
With this program (cs.exe):
1 | class Program |
And the runs:
1 | > cs.exe go\to\a_path |
That means if your path has a space so you quote it, be very careful NOT to put a trailing \ at the end, otherwise your program
might just not be able to handle it as it incorrectly contains a " at the end. Single quote is even weirder!