commit | 273a1e7808290a1590d332f2db1e3425406c864d | [log] [tgz] |
---|---|---|
author | Todd Volkert <tvolkert@users.noreply.github.com> | Thu Mar 01 10:32:35 2018 -0800 |
committer | GitHub <noreply@github.com> | Thu Mar 01 10:32:35 2018 -0800 |
tree | 382a76d1d24f41f299dd6c9dfadf957119da1e05 | |
parent | ed47cc0480f7fdf4b736081623db9c3db66fb97f [diff] |
Bump version to 2.3.7 (#75)
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
:
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();