I would like to ONLY change the permission of a specific directory without changing the permission of the files or directories that it contains.
I know that the following command will recursively alter the permission of all dir and files in it:
chmod -R 777
And the following will change only the files but not the directories that it contains:
chmod -r 777