How do I escape spaces in command line in Windows without using quotation marks?
- by David
For example what is the alternative to this command without quotation marks:
CD "c:\Documents and Settings"
The full reason I don't want to use quotation marks is that this command DOES work:
SVN add mypathname\*.*
but this command DOES NOT work :
SVN add "mypathname\*.*"
The problem being when I change mypathname for a path with…