NAME
File::MimeInfo - Guess file type by extension
SYNOPSIS
use File::MimeInfo;
my $mime_type = mimetype($file);
DESCRIPTION
This module can be used to determine the mime type of a file. It tries to implement the freedesktop specification for a shared MIME database.
For this module shared-mime-info-spec 0.11 and basedir-spec 0.5 where used.
Currently only the globs file is used. No real magic checking is used. This is because the goal was to make a module that would share filetypes with rox, the current rox implementation also only uses globs.
( See "SEE ALSO" for url's )
EXPORT
The method mimetype is exported by default.
METHODS
new()-
Simple constructor to allow Object Oriented use of this module.
mimetype($file)-
Returns a mime-type string for
$file, returns undef on failure. Since currently only globs are supported, the file doesn't need to exist. dirs()-
Lists all directories that would be scanned when rehashing, they don't need to exist or need have a "mime" subdir.
The default behaviour can be overloaded by setting global variable
@DIRS, this is mainly used for testing purposes.It lists the least important dir first.
rehash()-
Rehash the data files. Glob information is preparsed
ENVIRONMENT
This module uses the following two environment variables when looking for available data file.
Quoting basedir-spec 0.5 :
- XDG_DATA_HOME
-
Defines the base directory relative to which user specific data files should be stored. If
$XDG_DATA_HOMEis either not set or empty, a default equal to$HOME/.local/shareis used.Mime data could be found in
$XDG_DATA_HOME/mime. - XDG_DATA_DIRS
-
Defines the preference-ordered set of base directories to search for data files in addition to the
$XDG_DATA_HOMEbase directory. The directories in$XDG_DATA_DIRSshould be seperated with a colon ':'. If$XDG_DATA_DIRSis either not set or empty, a value equal to/usr/local/share/:/usr/share/should is used.Mime data could be found in the "mime" subdirs of these dirs.
The order of base directories denotes their importance; the first directory listed is the most important. When the same information is defined in multiple places the information defined relative to the more important base directory takes precedent. The base directory defined by $XDG_DATA_HOME is considered more important than any of the base directories defined by $XDG_DATA_DIRS.
DIAGNOSTICS
This module throws a warning if it couldn't find any data files. This can either mean that you don't have the freedesktop mime info database installed, or your environment variables point to the wrong places.
An exception is thrown when it can't open a data file it found. This should never happen, since the mime info should logically be world readable.
AUTHOR
Jaap Karssenberg || Pardus [Larus] <j.g.karssenberg@student.utwente.nl>
Copyright (c) 2003 Jaap G Karssenberg. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
- other CPAN modules
- freedesktop specifications used
-
http://www.freedesktop.org/standards/shared-mime-info-spec/, http://www.freedesktop.org/standards/basedir-spec/
- freedesktop mime database
- other programs using this mime system
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 231:
=over without closing =back