If I run chmod 770 ./folderName, then users who are not the owner or in the group owning ./folderName (i.e. users in the “others” category) cannot access ./folderName/folderB or ./folderName/fileC, even after running:
chmod 777 ./folderName/folderB
chmod 777 ./folderName/fileC
Right? Does that rule applies to all Linux distributions? Thank you.