This is the mail archive of the
cygwin
mailing list for the Cygwin project.
Re: Hello! I can't get to c:\Program Files using c:\Program/ Files\ any suggestions?
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