Chmod 777 to a folder and all contents [duplicate]
This question already has an answer here: How do I change permissions for a folder and all of its subfolders and files in one step in Linux? [closed] 16 answers I have a web directory /www and a folder in that directory called store . Within store are several files and folders. I want to give the folder store and all files and folders within the store folder all permissions. How do I do this? I am guessing via .htaccess. petervaz If you are going for a console command it would be: chmod -R 777 /www/store . The -R (or --recursive ) options make it recursive. Or if you want to make all the files