I have a directory of Program Files and Program Files (x86) in C I can access Program Files using $ cd Program\ Files\ from Windows 8, but this command $ cd Program\ Files\ (x86) returns the following error:
Program Files
Program Files (x86)
C
$ cd Program\ Files\
$ cd Program\ Files\ (x86)
sadaf2605@Sadaf /cygdrive/c $ cd Program\ Files\ (x86) -bash: syntax error near unexpected token `('
You also need to avoid parentheses:
$ cd Program\ Files\ \(x86\)
Or just use quotation marks:
$ cd "Program Files (x86)"