Check if the stream is in read mode.
Check if the stream is seekable.
Check if the stream is in write mode
Closes the file associated with the stream and disassociates it.
Flush the stream. If the given stream was open for writing (or if it was open for updating and the last i/o operation was an output operation) any unwritten data in its output buffer is written to the file.
Reads an array of count elements in bytes, from the stream and stores them in a buffer.
A buffer to read data into.
The starting point in the buffer at which to begin reading into the buffer.
The number of bytes to read.
Sets the position indicator associated with the stream to a new position.
Number of bytes to offset from origin.
Position used as reference for the offset.
Specify the size of the underlying buffer for file buffering. The default size is probably 4096 on most systems.
Desired size of the underlying buffer. Use the value 0 to disable file buffering.
Returns the current value of the position indicator of the stream.
Writes an array of count elements in bytes, from the buffer to the current position in the stream.
A byte array containing the data to write.
The index of the first byte to read from buffer
and to write to the file.
The number of bytes to read from buffer
and to write to the file.
Generated using TypeDoc
Check if the stream is in append mode.