ForwardingFileSystemEntity< T extends FileSystemEntity, D extends FileSystemEntity> class
A file system entity that forwards all methods and properties to a delegate.
- Implemented types
- Implementers
Constructors
Properties
- absolute → T
-
Returns a FileSystemEntity whose path is the absolute path to this. [...]
read-only, override
- basename → String
-
Gets the part of this entity's path after the last separator. [...]
read-only, override
- delegate → D
-
The entity to which this entity will forward all methods and properties.
@protected, read-only
- dirname → String
-
Gets the part of this entity's path before the last separator. [...]
read-only, override
- isAbsolute → bool
-
Returns a bool indicating whether this object's path is absolute. [...]
read-only, override
- parent → Directory
-
The directory containing this.
read-only, override
- path → String
-
read-only, override
- uri → Uri
-
Returns a Uri representing the file system entity's location. [...]
read-only, override
- fileSystem → FileSystem
-
Returns the file system responsible for this entity.
read-only, inherited
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
delete(
{bool recursive: false }) → Future< T> -
Deletes this FileSystemEntity. [...]
override
-
deleteSync(
{bool recursive: false }) → void -
Synchronously deletes this FileSystemEntity. [...]
override
-
exists(
) → Future< bool> -
Checks whether the file system entity with this path exists. Returns
a
Future<bool>
that completes with the result. [...]override -
existsSync(
) → bool -
Synchronously checks whether the file system entity with this path
exists. [...]
override
-
rename(
String newPath) → Future< T> -
Renames this file system entity. [...]
override
-
renameSync(
String newPath) → T -
Synchronously renames this file system entity. [...]
override
-
resolveSymbolicLinks(
) → Future< String> -
Resolves the path of a file system object relative to the
current working directory. [...]
override
-
resolveSymbolicLinksSync(
) → String -
Resolves the path of a file system object relative to the
current working directory. [...]
override
-
stat(
) → Future< FileStat> -
Calls the operating system's stat() function on the path of this
FileSystemEntity. [...]
override
-
statSync(
) → FileStat -
Synchronously calls the operating system's stat() function on the
path of this FileSystemEntity. [...]
override
-
watch(
{int events: FileSystemEvent.all, bool recursive: false }) → Stream< FileSystemEvent> -
Start watching the FileSystemEntity for changes. [...]
override
-
wrap(
D delegate) → T -
Creates a new entity with the same file system and same type as this
entity but backed by the specified delegate.
@protected
-
wrapDirectory(
Directory delegate) → Directory -
Creates a new directory with the same file system as this entity and
backed by the specified delegate.
@protected
-
wrapFile(
File delegate) → File -
Creates a new file with the same file system as this entity and
backed by the specified delegate.
@protected
-
wrapLink(
Link delegate) → Link -
Creates a new link with the same file system as this entity and
backed by the specified delegate.
@protected
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
Returns a string representation of this object.
inherited
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
inherited