The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

File::Find::Rule::Type - rule to match on mime types

SYNOPSIS

 use File::Find::Rule::Type;
 my @images = find( file => type => 'image/*', in => '.' );

DESCRIPTION

File::Find::Rule::Type allows you to build Find::File::Rule searches that are limited by MIME type, using the File::Type module. Text::Glob is used so that the pattern may be a globbing pattern.

->type( @patterns )

Match only things with the mime types specified by @patterns. The specification can be a glob pattern, as provided by Text::Glob.

AUTHOR

Paul Mison <cpan@husk.org>. Shamelessly based on Richard Clamp's File::Find::Rule::MMagic, itself an idea of Mark Fowler.

COPYRIGHT

Copyright (C) 2003 Paul Mison. All Rights Reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

File::Find::Rule, Text::Glob, File::Type, Find::File::Rule::MMagic