rupesh has asked for the wisdom of the Perl Monks concerning the following question:
$path=`cd`; print $path; my %files = Recurse(["$path"], { match => '\.', nomatch => '' }); foreach (sort keys %files) { print; foreach (@{ $files{"$_"} }) { $files=$_; my $fullname="$dirs"."\\"."$files"; print $fullname; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Directory Recursion Question
by Abigail-II (Bishop) on Aug 06, 2003 at 12:23 UTC | |
by rupesh (Hermit) on Aug 06, 2003 at 12:26 UTC | |
by cianoz (Friar) on Aug 06, 2003 at 12:39 UTC | |
|
Re: Directory Recursion Question
by graff (Chancellor) on Aug 07, 2003 at 02:49 UTC |