File::Iterator ============== ** IMPORTANT NOTE ** v0.07 introduced some major, non-backwards compatible changes. Please read the POD documentation for new instructions on use. INTRODUCTION File::Iterator is an object-oriented Perl module for iterating across files in a directory tree. See the POD documentation for further details. SYNOPSIS use File::Iterator; $it = new File::Iterator( DIR => "/etc" ); while ($file = $it->next()) { # do stuff with $file } INSTALLATION To install this module type the following: perl Makefile.PL make make test make install COPYRIGHT AND LICENCE Copyright (C) 2002 Simon Whitaker This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.