55

I can't figure out how to write the path of a folder that includes spaces in its name (in Terminal).

I tried:

cd /path/path/path/"A Folder"/file

cd /path/path/path/'A Folder/file

cd /path/path/path/A_Folder/file

but they all return the error through the terminal:

[command]: cannot access '/path/path/path/A Folder/file' No such a file or directory 

I can still access it through steps like so:

cd /home
cd user
cd Desktop
cd "Bash Programming"
bash Example
Zanna
  • 72,312
Elian Kamal
  • 761
  • 2
  • 7
  • 11

4 Answers4

87

You can enclose the whole path by double-quotes ("), single-quote (') or escape the space character using a backslash (\) :

cd "/path/path/path/A Folder/file"
cd '/path/path/path/A Folder/file'
cd /path/path/path/A\ Folder/file
Benoit
  • 7,637
10

Either quote the entire name:

cd "/path/path/path/A Folder/file"

or escape just the strange characters (space, in this case) using a backslash.

cd /path/path/path/A\ Folder/file

Another thing to try, is using tab completion:

cd /home/user/Desktop/Bas

Then press the TAB key, this should complete it to:

cd /home/user/Desktop/Bash\ Programming/

Then you can type the rest of the path.

roadmr
  • 34,802
6

Have you tried this?

cd Bash\ Programming

Or

/path/path/path/A\ Folder/file
ararog
  • 191
  • 5
5

either put all or partial path in single or double quote or escape space with backslash.
Eg:

cd /path\ to\ folder  
cd '/path to folder'
αғsнιη
  • 36,350
totti
  • 6,908
  • 4
  • 40
  • 48