Read Only Permissions. How to change it?

Jeff444

Member
Aug 21, 2000
136
0
0
I've got 400 folders with 400 files that are "Read Only". I need to remove the "Read Only" permissions on all the files, but I don't want open each and every folder! Is there a way to remove permissions from files enmass?
 

yllus

Elite Member & Lifer
Aug 20, 2000
20,577
432
126
Sure. I'm assuming you're talking about files at that stored locally (on your own hard drive) and that you're using some version of Windows.

All you need to do is load up Windows Explorer, change directories until you're viewing the folders you need to change the read-only flags on and press CTRL-A to highlight everything in the directory. Once that's done, right-click on any one of the selected folders, select Properties and make sure the "Read-only" flag under Attributes is cleared. Press OK or Apply, and mission complete.
 

Spiff

Senior member
Oct 10, 1999
439
0
0
alternatively you could:

d:\myfiles>attrib *.* -r

use the attrib command to remove the read only attribute on all files.