Thread Dateisortierung
(39 answers)
Opened by IceRage at 2012-02-04 02:17
readdir() hat keine bestimmte sortierung.
ich weiss nicht, wie WinXP als default sortiert: Code (perl): (dl
)
1 2 3 4 5 # alphanumerisch my @files = sort readdir DIR; # nach änderungsdatum, neuestes zuletzt my @files = sort {-M "$directory/$b" <=> -M "$directory/$a" } readdir DIR; Editiert von pq: s/zuerst/zuletzt/ Last edited: 2012-02-04 14:11:50 +0100 (CET) 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 |