dart:io
Link class
References to filesystem links.
- Implemented types
-
Constructors
- Link(String path)
factory
- Creates a Link object.
- Link.fromRawPath(Uint8List rawPath)
factory
- Link.fromUri(Uri uri)
factory
- Creates a Link object.
Properties
- absolute → Link
read-only, override
- A Link instance whose path is the absolute path to this.
- hashCode → int
read-only, inherited
- The hash code for this object.
- isAbsolute → bool
read-only, inherited
- Whether this object's path is absolute.
- parent → Directory
read-only, inherited
- The parent directory of this entity.
- path → String
read-only, inherited
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
- uri → Uri
read-only, inherited
- A Uri representing the file system entity's location.
Methods
- create(String target, {bool recursive = false}) → Future<Link>
- Creates a symbolic link in the file system.
- createSync(String target, {bool recursive = false}) → void
- Synchronously create the link. Calling createSync on an existing link will throw an exception.
- delete({bool recursive = false}) → Future<FileSystemEntity>
inherited
- Deletes this
FileSystemEntity. - deleteSync({bool recursive = false}) → void
inherited
- Synchronously deletes this FileSystemEntity.
- exists() → Future<bool>
inherited
- Checks whether the file system entity with this path exists.
- existsSync() → bool
inherited
- Synchronously checks whether the file system entity with this path exists.
- noSuchMethod(Invocation invocation) → dynamic
inherited
- Invoked when a non-existent method or property is accessed.
- rename(String newPath) → Future<Link>
override
- Renames this link.
- renameSync(String newPath) → Link
override
- Synchronously renames this link.
- resolveSymbolicLinks() → Future<String>
override
- Resolves the path of a file system object relative to the current working directory.
- resolveSymbolicLinksSync() → String
override
- Resolves the path of a file system object relative to the current working directory.
- stat() → Future<FileStat>
inherited
- Calls the operating system's
stat() function on path. - statSync() → FileStat
inherited
- Synchronously calls the operating system's
stat() function on path. - target() → Future<String>
- Gets the target of the link.
- targetSync() → String
- Synchronously gets the target of the link.
- toString() → String
inherited
- A string representation of this object.
- update(String target) → Future<Link>
- Updates the link.
- updateSync(String target) → void
- Synchronously updates the link.
- watch({int events = FileSystemEvent.all, bool recursive = false}) → Stream<FileSystemEvent>
inherited
- Start watching the FileSystemEntity for changes.
Operators
- operator ==(Object other) → bool
inherited
- The equality operator.