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