blob: 022ddaf9f497693ab035a86d06108547dfe13095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
=head1 NAME
finddepth - traverse a directory structure depth-first
=head1 SYNOPSYS
use File::Finddepth;
finddepth(\&wanted, '/foo','/bar');
sub wanted { ... }
=head2 DESCRIPTION
This is just like C<File::Find>, except that it does a depthfirst
search uses finddepth() rather than find(), and performs a
depth-first search.
|