file 2.3.5 copy "file: ^2.3.5" to clipboard
file: ^2.3.5 copied to clipboard

outdatedDart 1 only

A pluggable, mockable file system abstraction for Dart.

Build Status Coverage Status

File #

A generic file system abstraction for Dart.

Like dart:io, package:file supplies a rich Dart-idiomatic API for accessing a file system.

Unlike dart:io, package:file:

  • Can be used to implement custom file systems.
  • Comes with an in-memory implementation out-of-the-box, making it super-easy to test code that works with the file system.
  • Allows using multiple file systems simultaneously. A file system is a first-class object. Instantiate however many you want and use them all.

Usage #

Implement your own custom file system:

import 'package:file/file.dart';

class FooBarFileSystem implements FileSystem { ... }

Use the in-memory file system:

import 'package:file/memory.dart';

var fs = new MemoryFileSystem();

Use the local file system (requires dart:io access):

import 'package:file/local.dart';

var fs = const LocalFileSystem();
249
likes
0
pub points
100%
popularity

Publisher

verified publishergoogle.dev

A pluggable, mockable file system abstraction for Dart.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

intl, meta, path

More

Packages that depend on file