On 17 January 2002 19:34, Miller, Jeremy T. [mailto:[EMAIL PROTECTED]] wri=ote:
> What I would like to do is have Perl to remove the read-only
> attribute for all of the files that I put
> in a certain folder (e.g., L:\Flu\StData\).

For once, don't use perl.

cd L:\Flu\StData
attrib/s -r *.*

(The /s says do this and subdirectories.)

If you really need to use perl, I would suggest working with File::Find.

Richard Cox 
Senior Software Developer 
Dell Technology Online 
All opinions and statements mine and do not in any way (unless expressly
stated) imply anything at all on behalf of my employer


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to