File::Dir::Dumper::Scanner - scans a directory and returns a stream of Perl


File-Dir-Dumper documentation  | view source Contained in the File-Dir-Dumper distribution.

Index


NAME

Top

File::Dir::Dumper::Scanner - scans a directory and returns a stream of Perl hash-refs

VERSION

Top

Version 0.0.7

SYNOPSIS

Top

    use File::Dir::Dumper::Scanner;

    my $scanner = File::Dir::Dumper::Scanner->new(
        {
            dir => $dir_pathname
        }
    );

    while (defined(my $token = $scanner->fetch()))
    {
    }

METHODS

Top

$self->new({ dir => $dir_path})

Scans the directory $dir_path.

my $hash_ref = $self->fetch()

Outputs the next token as a hash ref.

AUTHOR

Top

Shlomi Fish, <shlomif@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-file-dir-dumper at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=File-Dir-Dumper. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc File::Dir::Dumper




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Dir-Dumper

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/File-Dir-Dumper

* CPAN Ratings

http://cpanratings.perl.org/d/File-Dir-Dumper

* Search CPAN

http://search.cpan.org/dist/File-Dir-Dumper

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


File-Dir-Dumper documentation  | view source Contained in the File-Dir-Dumper distribution.