FileSystemFileEntry extension type

The FileSystemFileEntry interface of the File and Directory Entries API represents a file in a file system. It offers properties describing the file's attributes, as well as the FileSystemFileEntry.file method, which creates a File object that can be used to read the file.


API documentation sourced from MDN Web Docs.

on
Implemented types
Available extensions

Properties

filesystem FileSystem
The read-only filesystem property of the FileSystemEntry interface contains a FileSystem object that represents the file system on which the entry resides.
no setterinherited
fullPath String
The read-only fullPath property of the FileSystemEntry interface returns a string specifying the full, absolute path from the file system's root to the file represented by the entry.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isDirectory bool
The read-only isDirectory property of the FileSystemEntry interface is true if the entry represents a directory (meaning it's a FileSystemDirectoryEntry) and false if it's not.
no setterinherited
isFile bool
The read-only isFile property of the FileSystemEntry interface is true if the entry represents a file (meaning it's a FileSystemFileEntry) and false if it's not.
no setterinherited
name String
The read-only name property of the FileSystemEntry interface returns a string specifying the entry's name; this is the entry within its parent directory (the last component of the path as indicated by the FileSystemEntry.fullPath property).
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

file(FileCallback successCallback, [ErrorCallback errorCallback]) → void
The FileSystemFileEntry interface's method file() returns a File object which can be used to read data from the file represented by the directory entry.
getParent([FileSystemEntryCallback successCallback, ErrorCallback errorCallback]) → void
The FileSystemEntry interface's method getParent() obtains a FileSystemDirectoryEntry.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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