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