Hi,
I have a silly question: in the DOS prompt, I am typing
> cd Program Files
to go to the Program Files folder.
but because there is a space in the directory name, dos has a problem.
How can I fix this?
Thanks!
Printable View
Hi,
I have a silly question: in the DOS prompt, I am typing
> cd Program Files
to go to the Program Files folder.
but because there is a space in the directory name, dos has a problem.
How can I fix this?
Thanks!
Try
cd "Program Files"
or if there are no other folders starting with program you might try:
cd Program*
rgds,
S. Bro
Thanks!
cd Program*
only works on NT/2K/XP. Doesn't work on 95/98/ME
If Program Files is the first directory with Progra... created, you could also use
cd Progra~1
You can use dir /x to obtain the 8.3 format directory name and
then cd into that directory.
--Paul
cd Program* will only work with cmd command processor. The default old command will neither work on NT/2K/XP