# 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.
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
Lingua non convalesco, consenesco et abolesco. -- Rule 1 has a caveat! -- Who broke the cabal?
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|