NAME
File::RDir - List directories and recurse into subdirectories.
SYNOPSIS
use File::RDir qw(read_rdir);
my $iter = File::RDir->new('C:\Windows\System', { prune => '.git:i;dat*' });
while (defined(my $file = $iter->match)) {
# do stuff with $file...
}
AUTHOR
Klaus Eichner, November 2015
COPYRIGHT AND LICENSE
Copyright (C) 2015 by Klaus Eichner
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.