in reply to Descending a directory tree, returning a list of files
I hope this helps!use File::Find::Rule; my $xml_finder = File::Find::Rule->new()->name(qr/(.*?)\.xml$/i)->star +t("."); while (my $file = $xml_finder->match() ) { # Do whatever you want with your file name }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Descending a directory tree, returning a list of files
by locked_user sundialsvc4 (Abbot) on Jun 09, 2015 at 22:06 UTC | |
by dasgar (Priest) on Jun 10, 2015 at 05:03 UTC | |
by Anonymous Monk on Jun 10, 2015 at 06:51 UTC |