Re: changing file attributes

2002-01-18 Thread Michael Stidham
Jeremy, You could try something like this: my $Attributes = 32; $path = "L:\\Flu\\StData\\"; foreach $e ( <$path\\*.*> ) { Win32::File::SetAttributes ($path, NORMAL); } >From: "Miller, Jeremy T." <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: changing file attributes >Date: Thu, 17 Jan 200

RE: changing file attributes

2002-01-18 Thread Richard_Cox
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 *.* (Th