Name
FlushFile -- flush all pending buffers (V2.5)
Synopsis
FlushFile(id)
Function
This function flushes any pending buffers on the file specified by id and re-adjusts the file cursor. It is important that you call this function if you switch between buffered and unbuffered IO on the same file. If you do not use SetIOMode() at all, you do not have to worry about flushing buffers either because everything will be done automatically by the file system if you only use buffered IO.

Inputs
id
identifier of the file to be flushed

Show TOC