Thread Test ob Datei vorhanden mit wildcards (3 answers)
Opened by Marc at 2011-06-21 16:42

dgw
 2011-06-21 17:06
#149834 #149834
User since
2010-08-16
27 Artikel
BenutzerIn

user image
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

View full thread Test ob Datei vorhanden mit wildcards