MSDN says that FileStream.Flush(True) \"also clears all intermediate file buffers.\".
What does \"all intermediate file buffers\" mean exactly?
When you call Flush()
or Flush(false)
, FileStream
"copies to the file any data previously written to the buffer and clears the buffer (except for its encoder state)". Buffer here means internal buffer of FileStream
class. And copying to file is not writing data to disc. It's just passing data to OS.
But, IO operations in Windows OS are also buffered - writing data to disk could be postponed until system will be ready to do it. So, clearing all intermediate buffers enforces writing buffered data to disc. Buffers here means Windows internal buffers [File system cache].
BTW when you close file, all buffered data will be written to disc automatically. So, you need this stuff only if you need data to be flushed before file handle will be closed.