###Function###
FileFlush

###Description###
Flushes the file's buffer to disk.

###Syntax###
FileFlush ( handle )


###Parameters###
@@ParamTable@@
handle
	A handle to a file previously opened with FileOpen().
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	Returns true if the buffer was flushed (or did not need to be flushed).
Failure:	Returns false.
@@End@@


###Remarks###
A file is flushed when it's handle is closed or when Windows internal buffer is full.  This function forces an immediate flushing of the buffer.
This function can only be used with file handles returned from FileOpen().

###Related###
FileClose, FileOpen, FileWrite, FileWriteLine, FileSetPos


###Example###
@@IncludeExample@@
