summaryrefslogtreecommitdiff
path: root/pod/modpods/Finddepth.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/modpods/Finddepth.pod')
-rw-r--r--pod/modpods/Finddepth.pod16
1 files changed, 16 insertions, 0 deletions
diff --git a/pod/modpods/Finddepth.pod b/pod/modpods/Finddepth.pod
new file mode 100644
index 0000000000..022ddaf9f4
--- /dev/null
+++ b/pod/modpods/Finddepth.pod
@@ -0,0 +1,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.
+