如何更改特定目录的权限而不影响该目录内所有内容的权限?

How to change the permission for a specific directory without affecting the permission of everything inside that directory?

我只想更改特定目录的权限而不更改其包含的文件或目录的权限。
我知道以下命令将递归地更改其中所有目录和文件的权限:

chmod -R 777

以下将仅更改文件而不更改其包含的目录:

chmod -r 777

chmod 777 /path/to/specific/dir

命令中的-r-R表示它改变了所有文件和目录的Permission/Owner目录!!