in reply to Re: Re: Recursive opendir without
in thread Recursive opendir without
Jeroen
"We are not alone"(FZ)
With a little change:
our @list; findfile('*'); sub findfile{ my $glob = shift; for ( glob $glob ){ push( @list, $_) if -f; findfile( $_.'/*' ) if -d; } }
|
|---|