Hello! I can't get to c:\Program Files using c:\Program/ Files\ any suggestions?

wynfield@gmail.com wynfield@gmail.com
Wed Jun 16 09:38:00 GMT 2010


Thorsten, don't use Microsoft Windows style of pathnames!  Use POSIX compliant
pathnames.

E.g. Do the following
$  cd /cygdrive/c/Program\ Files

or alternatively try
$  cd "`cygpath -u "C:\Program Files"`"

Note the backslash is to escape the space in the pathname in the 1st case, quotes
in the 2nd case.
   
Re:Thorsten Kampe <thorsten@thorstenkampe.de> wrote:
> 
> "cd c:\Program/ Files\" doesn't work and never worked
> "cd 'c:\Program Files'" does work and always worked
> 
> Thorsten

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list