Thread Test ob Datei vorhanden mit wildcards
(3 answers)
Opened by Marc at 2011-06-21 16:42
Vielleicht hilft auch ein Blick auf die Funktion glob?
Code (perl): (dl
)
1 2 3 4 5 my @array = qw(foo bar.exe foobar) ; foreach my $string ( @array ) { my @list_of_files = glob /^$string/ ; printf "'%s' => '%s'\n" , $string , join( "','" , @list_of_files ) ; } Just my 2 cents. Daniel |