in reply to Re: File Properties/attributes in Win32
in thread File Properties/attributes in Win32
# HIDDEN and other attributes are exported by Win32::File by default
Did you try that? If so, perhaps you could explain what I'm doing wrong here?
#! perl -slw use strict; use Win32::File qw[ GetAttributes ]; while( my $file = glob $ARGV[0] ) { GetAttributes( $file, my $attrs ); printf "%1s%1s%1s%1s%1s%1s%1s%1s%1s %s\n", ( $attrs & ARCHIVE ) ? 'A' : ' ', ( $attrs & COMPRESSED) ? 'C' : ' ', ( $attrs & DIRECTORY ) ? 'D' : ' ', ( $attrs & HIDDEN ) ? 'H' : ' ', ( $attrs & NORMAL ) ? 'N' : ' ', ( $attrs & OFFLINE ) ? 'O' : ' ', ( $attrs & READONLY ) ? 'R' : ' ', ( $attrs & SYSTEM ) ? 'S' : ' ', ( $attrs & TEMPORARY ) ? 'T' : ' ', $file; } __END__ C:\test>junk4 *.pl Bareword "ARCHIVE" not allowed while "strict subs" in use at C:\test\j +unk4.pl line 7. Bareword "COMPRESSED" not allowed while "strict subs" in use at C:\tes +t\junk4.pl line 7. Bareword "DIRECTORY" not allowed while "strict subs" in use at C:\test +\junk4.pl line 7. Bareword "HIDDEN" not allowed while "strict subs" in use at C:\test\ju +nk4.pl line 7. Bareword "NORMAL" not allowed while "strict subs" in use at C:\test\ju +nk4.pl line 7. Bareword "OFFLINE" not allowed while "strict subs" in use at C:\test\j +unk4.pl line 7. Bareword "READONLY" not allowed while "strict subs" in use at C:\test\ +junk4.pl line 7. Bareword "SYSTEM" not allowed while "strict subs" in use at C:\test\ju +nk4.pl line 7. Bareword "TEMPORARY" not allowed while "strict subs" in use at C:\test +\junk4.pl line 7. Execution of C:\test\junk4.pl aborted due to compilation errors.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: File Properties/attributes in Win32
by rafl (Friar) on Mar 14, 2006 at 12:05 UTC | |
by BrowserUk (Patriarch) on Mar 14, 2006 at 12:24 UTC | |
by PodMaster (Abbot) on Mar 15, 2006 at 05:24 UTC |