As we know that windows, we can create folders with a name contains spaces(Hello World,New Folder,My Programs). In the commandline if we use start c:\Hello World\mygame.exe , it gives error called Hello is not found. it split the word from the space, to avoid this we can use thid start c:\"Hello World"\mygame.exe. my problem is this set x=%cd% (Here cd is "c:\Hello World" ) and we execute mygame.exe using this command "start %cd%\mygame.exe" which gives error of Hello is not found. Anyone knows solution for this?
|
feedback
|
|
Instead of putting quotes around just part of the path, put quotes around the entire path. If you do that, you should be fine.
| |||||||||||
feedback
|
|
In the set command put quotes around the whole assignment:
In the start command, use quotes as well:
| ||||
|
feedback
|