VFSFileOutput.write

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)

struct VFSFileOutput
void
write
(
const void[] data
)

Throws

VFSIOException on error (e.g. after running out of disk space).

Meta