Thread Problem mit dem Auflisten von Dateien
(5 answers)
Opened by jan999 at 2009-11-20 08:57
Möglichst OS-neutral würde ich es wohl so machen:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 #!/usr/bin/perl -l use strict; use warnings; use File::Find::Rule; my $osmolt_filter = $ARGV[0]; my @files = File::Find::Rule->file( '*.txt' ) ->maxdepth( 1 ) ->in( $osmolt_filter ); print $_ for @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/ |