vote up 4 vote down star
1

I understand that .NET FileStream's Flush method only writes the current buffer to disk, but dependent on Windows' disk driver and the hard disk firmware this is no guarantee that the data is actually physically written to disk.

Is there a .NET or Win32 method that can give me this guarantee? So if there is power loss one nanosecond after the call to this method comes back, I can still be sure that everything is OK?

flag

64% accept rate

4 Answers

vote up 6 vote down check

Under Windows, look at FlushFileBuffers (Win32 API).

link|flag
Thank you :) I have quickly done a performance test and FileStream.Flush() is way too fast to be true. FlushFileBuffers on FileStream's SafeFileHandle is as slow as I would expect it (100 times slower than Flush() in my test) – Stefan Schultze Dec 20 '08 at 14:22
vote up 2 vote down

Well, you could close the file... that would probably do it. In reality, with HAL abstraction, virtualization, and disk hardware now having more processing power and cache memory than computers did a few years ago, you're going to have to live with hoping the disk does its job.

The transactional file system never really materialized ;-p Of course, you could perhaps look at using a database as a back end, and use the transaction system of that?

Aside: note that not all streams even guarantee to Flush() - for example, GZipStream etc retain a working buffer of uncommitted data even after a flush - the only way to get it to flush everything is to Close() it.

link|flag
Technically, with writing to a database, theres no guarantee that a power outage or other catastrophic failure won't lose the write or corrupt the database somehow, although its far more likely to survive than a simple filesystem write. – cletus Dec 20 '08 at 14:14
yes, but you can wrap the "mark this as done" and "here's the results" in the same transaction – Marc Gravell Dec 20 '08 at 14:32
vote up 1 vote down

There's simply too many levels of abstraction to be absolutely sure that the data is written to the disc, right down to the hardware level.

Not brilliantly performant or foolproof, but how about re-opening the file once it is written in a seperate process and checking the size or contents?

link|flag
vote up 1 vote down

maybe you have a look at this article:

http://msdn.microsoft.com/en-us/magazine/cc163388.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.