I have read this topic, which gave me some info but I feel I am not fully getting it. What does the execute permission actually mean on a folder? I fully understand what it means on a file, but on a folder.
Asked
Active
Viewed 3.4k times
1 Answers
34
With the execute bit set you have the permission
- to
cd
into the directory - Also for long listing
ls -l
i.e. to view the meta data of the files inside the directory (Provided thatread
permission is there for the directory.

Henry Henrinson
- 185

flemingovirus
- 638
cd
(andls -l
) are allowed, especiallycd
actually. But anyway, thanks a lot for the clarification then.+x
permission on a folder means I cancd
it. excellent! – Alexandre Bourlier Aug 15 '14 at 19:25