The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SWISH::Prog::Find - search one or more directory trees for files to index

SYNOPSIS

    use SWISH::Prog;
    my $indexer = SWISH::Prog->new;
    $indexer->find('some/dir');

DESCRIPTION

SWISH::Prog::Find uses a simple File::Find wanted() call to recursively index the filesystem.

METHODS

files( $prog, @paths )

Recursive through @paths and call the basic Prog methods: dir_ok(), url_ok(), fetch() and index().

paths may be files or directories. Any files will be handled before any directories.

REQUIREMENTS

File::Find

SEE ALSO

http://swish-e.org/docs/, SWISH::Prog

AUTHOR

Peter Karman, <perl@peknet.com>

COPYRIGHT AND LICENSE

Copyright 2006 by Peter Karman

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.