Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

ManhattanPrjct

macrumors 6502
Original poster
Oct 6, 2008
354
1
For some reason, a number of files on my hard drive are "read" instead of "read/write." I am not sure how this happened, but I wanted to know if there's a quick way to change the permissions on about 1000 files without changing each one one-by-one. You would think clicking the folder and changing it there would solve this issue...
 
If the files are in one folder, open Terminal:

Code:
cd /path/to/files
Code:
chmod u+w <file list>

where <file list> can be a wildcard, such as *.* for all files, including hidden ones. This adds the write privilege to the owner of the files.
 
If you want to ensure your user has write permissions on all files:

Code:
find /path/to/files -type f -exec chmod u+w {} \;
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.