
FTS - Perl extension for File Traversing System

use FTS;
$fts = new FST("/usr/local");
while ($file = $fts->Dive) {
print "$file\n";
}

This is similar to File::Find, but works non recursively. Symbolic links to directories are skipped.
Inspired by the BSD fts library.

Ariel Brosh, schop@cpan.org

perl(1), File::Find, fts(3).