Thread windows attrib mit perl?
(40 answers)
Opened by bianca at 2009-10-10 12:31
importiere die genannten konstanten, die in der doku aufgezaehlt werden und verknuepfe sie mit einem binary-OR (also so wie man das z.b. auch von sysopen oder flock kennt).
Code (perl): (dl
)
1 2 use Win32::File qw/ ARCHIVE COMPRESSED... /; ... GetAttributes($file, ARCHIVE | COMPRESSED ); Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |