Get to the DOS command prompt. Go to Start, Run and type command if you don't have a shortcut to DOS. [At the DOS prompt, C:\>,] change to the directory where you have stored the files.
To see the file attributes that have been set to read only type:
ATTRIB *.*.
To change all of the files in the directory and its sub directories type:
ATTRIB -r *.* /s
|
Editor's Notes:
In case you don't recall1 [or never knew] these command "switches", let us help you recall their meanings:
ATTRIB +R filename.ext means set the file filename.ext to Read Only
ATTRIB -R filename.ext means set the file filename.ext to Read Write
/s processes (i.e. applies the command to) files in all subdirectories of the specified path
In this case ATTRIB -r *.* /s sets ALL files in the directory and any subdirectories to Read Write status.
1 We had to look them up in our old MS-DOS manual!
|