Thread dateien einlesen und nach timestamp sortieren
(6 answers)
Opened by mr-sansibar at 2007-09-26 17:33
Was meinst Du mit "timestamp"??
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 my $dir = '.'; opendir my $dirh, $dir or die $!; my @files = grep{ -f $dir . '/' . $_ }readdir $dirh; closedir $dirh; # nach modification time sortiert # sogenannte Schwartz'sche Transformation my @sorted_files = map{ $_->[0] } sort{ $a->[1] <=> $b->[1] } map{ [$_, -M $dir . '/' . $_] }@files; print $_,"\n" for @sorted_files; OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |