| commit | 5beb5961f6fbb53d200ef827d8e38f033d8b25c9 | [log] [tgz] |
|---|---|---|
| author | Todd Volkert <tvolkert@users.noreply.github.com> | Thu Mar 16 12:51:18 2017 -0700 |
| committer | GitHub <noreply@github.com> | Thu Mar 16 12:51:18 2017 -0700 |
| tree | 31d5b15b2ab9388f14aa32302b54954d53984ade | |
| parent | 9895e047b30aae47c0fb17dc151eaa3ad12316d5 [diff] |
Ignore errno values on Windows tests (#55) This allows us to run some tests rather than skipping them, which in turn allows us to focus on the more egregious test failures.
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();