pcejas / mime_types

A Dart helper-package for working MIME and content types.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mime_types

Build Status

A Dart helper-package for working MIME and content types.

It differs from Google's MIME package in two main ways:

  1. Content type lookup doesn't take file contents (magic bytes) into account - it's purely based on an extension or file name.
  2. The library provides both content type-to-extension AND extension-to-content type mapping.

MIME/content type database from https://github.com/jshttp/mime-db

Usage

import 'package:mime_types/mime_types.dart' as mime;

main() {
    print(mime.extension('image/jpeg'));  // jpeg
    print(mime.extension('application/pdf'));  // pdf
    
    print(mime.contentType('jpg'));  // image/jpeg
    print(mime.contentType('pdf'));  // application/pdf
    print(mime.contentType('/path/to/file.txt'));  // text/plain
}

Running tests

pub run test test

About

A Dart helper-package for working MIME and content types.

License:MIT License


Languages

Language:Dart 100.0%