IFileSystem class abstract interface

Mechanism for working with file system.

Implementers

Constructors

IFileSystem()

Properties

hashCode → int
The hash code for this object.
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

connect() → void
Method for connecting the file system.
create(String path, {bool recursive = false, EntityType type = EntityType.file}) → void
delete(String path, {bool recursive = false, EntityType type = EntityType.file}) → void
Deletes this Entity
disconnect() → void
Method for disconnecting the file system.
exists(String path, {EntityType type = EntityType.file}) → bool
list(String dirPath) → Stream<Entity>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
openRead(String filePath) → Stream<List<int>>
stat(String path, {EntityType type = EntityType.file}) → Stat
Returns Stat for Entity.
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited