FileFlush

From Multi Theft Auto: Wiki
Revision as of 01:22, 23 November 2007 by ChrML (talk | contribs) (New page: bool fileFlush ( file ) Flushes a file so that waiting disk writings are written immediately. Things written by fileWrite is often delayed until a certain buffer is full or the file is cl...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

bool fileFlush ( file )

Flushes a file so that waiting disk writings are written immediately. Things written by fileWrite is often delayed until a certain buffer is full or the file is closed until they're actually written to the disk. Call this if you need the data written right now without closing the file.