What's the difference between FileStream.Flush

2020-07-02 04:43发布

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

What does "all intermediate file buffers" mean exactly?

3条回答
甜甜的少女心
2楼-- · 2020-07-02 05:05

This will make an extra call to flush the buffer to file:

 Win32Native.FlushFileBuffers(this._handle);
查看更多
家丑人穷心不美
3楼-- · 2020-07-02 05:12

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.

查看更多
Explosion°爆炸
4楼-- · 2020-07-02 05:25

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.

查看更多
登录 后发表回答