Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between FileStream.Flush() and FileStream.Flush(True)?

Tags:

MSDN says that FileStream.Flush(True) "also clears all intermediate file buffers.".

What does "all intermediate file buffers" mean exactly?

like image 514
cooldfish Avatar asked Feb 07 '11 12:02

cooldfish


People also ask

What does FileStream flush do?

Flush(Boolean)Clears buffers for this stream and causes any buffered data to be written to the file, and also clears all intermediate file buffers.

What does Streamwriter flush do?

Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream.


2 Answers

It causes the file data that's buffered in the file system cache to be written to disk. That data is normally lazily written, based on the position of the disk write head. Having a gigabyte of cached data is technically possible so it can take quite a while. If this is important to you then consider the FileOptions.WriteThrough option instead. It disables write caching completely. This can be very expensive; you'll discover how slow hard disks really are.

like image 198
Hans Passant Avatar answered Oct 27 '22 10:10

Hans Passant


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.

like image 32
Sergey Berezovskiy Avatar answered Oct 27 '22 09:10

Sergey Berezovskiy