Last updated:
0 purchases
file
A generic file system abstraction for Dart.
Features #
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 { ... }
copied to clipboard
Use the in-memory file system:
import 'package:file/memory.dart';
var fs = MemoryFileSystem();
copied to clipboard
Use the local file system (requires dart:io access):
import 'package:file/local.dart';
var fs = const LocalFileSystem();
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.