mime_type 0.2.7 copy "mime_type: ^0.2.7" to clipboard
mime_type: ^0.2.7 copied to clipboard

outdated

MIME type library for Dart HTTP server applications.

MIME type #

Library to get MIME type from a file name or a file path. When a HTTP server sends a file to the client, MIME type of the file must be set to the Content-Type header of the response.

Only two methods are available:

  • String mime(String FileName) // gets the MIME type from a file name (such as 'Hello.dart') or a file path (such as '..\Hello.dart').

  • String mimeFromExtension(String extension) // gets the MIME type from an extension (such as 'dart')

Both methods return null If MIME type for the file is not available.

Example #

import 'package:mime_type/mime_type.dart';

sendFile(HttpRequest request, String fileName) {
  HttpResponse response = request.response;
  File file = new File(fileName);
  if (file.existsSync()) {
    String mimeType = mime(fileName);
    if (mimeType == null) mimeType = 'text/plain; charset=UTF-8';
      // you can change the default content type
      // or, you can choose to send error message
    response.headers.set('Content-Type', mimeType);
    RandomAccessFile openedFile = file.openSync();
    response.contentLength = openedFile.lengthSync();
    openedFile.closeSync();
    file.openRead().pipe(response);
  } else {
    // send 404 (Not Found) status to the client
  }
}

License #

This library is licensed under MIT License.

70
likes
0
pub points
99%
popularity

Publisher

unverified uploader

MIME type library for Dart HTTP server applications.

Repository (GitHub)
View/report issues

More

Packages that depend on mime_type