Write data to file starting at current file position.
Note:
In append mode, any write will write to the end of file regardless of the current file position and file position will be set to the end of file.
(This is to stay in line with the C standard so we can use C I/O functions directly)
VFSIOException on error (e.g. after running out of disk space).
See Implementation
Write data to file starting at current file position.
Note:
In append mode, any write will write to the end of file regardless of the current file position and file position will be set to the end of file.
(This is to stay in line with the C standard so we can use C I/O functions directly)