Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 466 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 466 Bytes

mimerl

library to handle mimetypes

Present a way to parse IANA mediatype as defined here: http://www.iana.org/assignments/media-types/media-types.xhtml

Build

$ make

Example of usage:

1> mimerl:extension(<<"c">>).
<<"text/x-c">>
2> mimerl:filename(<<"test.cpp">>).
<<"text/x-c">>
3> mimerl:mime_to_exts(<<"text/plain">>).
[<<"txt">>,<<"text">>,<<"conf">>,<<"def">>,<<"list">>,
 <<"log">>,<<"in">>]