NAME
MP3::Find::Filesystem - File::Find-based backend to MP3::Find
SYNOPSIS
use MP3::Find::Filesystem;
my $finder = MP3::Find::Filesystem->new;
my @mp3s = $finder->find_mp3s(
dir => '/home/peter/music',
query => {
artist => 'ilyaimy',
album => 'myxomatosis',
},
ignore_case => 1,
);
REQUIRES
File::Find, MP3::Info, Scalar::Util
DESCRIPTION
This module implements the search
method from MP3::Find::Base using a File::Find based search of the local filesystem.
Special Options
There are no special options for MP3::Find::Filesystem. See MP3::Find for the description of the general options.
SEE ALSO
AUTHOR
Peter Eichman <peichman@cpan.org>
COPYRIGHT AND LICENSE
Copyright (c) 2006 by Peter Eichman. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.