Thanks to visit codestin.com Credit goes to docs.iina.io
A file handle returned by file.handle(). Can be used to read and write files in binary mode.
Get the current offset of the file handle.
Seek to a given offset.
The offset to seek to.
Seek to the end of the file.
Read a given number of bytes from the current offset.
The number of bytes to read.
Read all bytes from the current offset to the end of the file.
Write data to the file at the current offset.
The data to write.
Close the file handle.
Generated using TypeDoc
A file handle returned by file.handle(). Can be used to read and write files in binary mode.