Thread Datei Filter: glob oder Regex
(4 answers)
Opened by Kuerbis at 2019-11-18 05:17
Vielleicht werde ich es doch mit einer regex machen, da ich ohnehin schon eine readdir Schleife habe:
Code (perl): (dl
)
1 2 3 4 5 6 while ( my $file = readdir $dh ) { next if $file =~ /^\./ && ! $self->{show_hidden}; next if $file !~ /$filter_regex/; push @files, decode( 'locale_fs', $file ) if -f catdir $dir, $file; } |