File::Iterator
==============

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 ($it->hasNext()) {
	$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. 

