ReadonlyidUnique identifier for this file handle.
ReadonlylastLast modification timestamp (Unix ms).
ReadonlynameDisplay name of the file.
ReadonlyreadableWhether the file can be read.
ReadonlysizeSize of the file in bytes.
ReadonlysourceSource of the file data.
ReadonlywritableWhether the file can be written to.
Closes the file handle and releases resources.
Reads bytes from a specific range.
The byte range to read.
Promise resolving to the raw bytes read.
Writes bytes to a specific range.
The byte range to write to.
The data to write.
Represents an open file handle for reading and writing binary data. Abstracts the underlying storage mechanism (local file, remote, or memory).