Thread File::Find geht nicht?: File::Find geht nicht? (4 answers)
Opened by Gast at 2006-04-26 10:58

renee
 2006-04-26 11:36
#65332 #65332
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Probier mal:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
use File::Find;
my $myRoot;
$myRoot = "/home/50000";

find(\&myFileFilter, $myRoot); # ab Verzeichnis $myRoot suchen

sub myFileFilter
{
my $name = $File::Find::name;
if($name =~ /10047$/ and -d $name){
print $name;
}
}
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/

View full thread File::Find geht nicht?: File::Find geht nicht?