On POSIX systems rename(2) provides for an atomic rename operation, including overwriting of the destination file if it exists and if permissions allow.

Is there any way to get the same semantics on Windows? I know about MoveFileTransacted() on Vista and Server 2008, but I need this to support Win2k and up.

The key word here is atomic... the solution must not be able to fail in any way that leaves the operation in an inconsistent state.

I've seen a lot of people say this is impossible on win32, but I ask you, is it really?

Please provide reliable citations if possible.

link|improve this question
@Adam Davis - If you have control of the reader program as well as the writer, you can solve it like this. Reader does io.Directory("FileDone_*.dat") and picks highest # in place of *. Write creates file with the name of "FileWriting.dat" and renames it to "FileDone_002.dat" ..003, 004, etc. Not only does this solve the problem of non atomic delete/rename, that single rename-only is atomic, and, if the old file is held open, it's still possible to update. The reader(s) can watch for a new file based on a timer if it doesn't re-open with every operation. Readers can clean up old files. – FastAl 2 days ago
feedback

5 Answers

up vote 11 down vote accepted

Win32 does not guarantee atomic file meta data operations. I'd provide a citation, but there is none - that fact that there's no written or documented guarantee means as much.

You're going to have to write your own routines to support this. It's unfortunate, but you can't expect win32 to provide this level of service - it simply wasn't designed for it.

link|improve this answer
I find this hard to believe. This would mean that a power outage could easily corrupt the file system even if we're dealing with a reliable system such as NTFS. – mafutrct Mar 19 at 10:26
@mafutrct Keep in mind that the question isn't about corrupting the file system - it's about making sure that the rename completes successfully, or doesn't occur at all. The file system would not be left corrupted, but the file name may not be left in either the original or the final state. NTFS is a journaling files sytem, so it won't (easily) become corrupted, but depending on the complexity of the file rename or order of operations it's possible that it won't be left in the original or desired final state. – Adam Davis Mar 19 at 20:58
That makes sense, but it's also really scary. To end up with a filename that is neither original or final is a recipe for disaster pretty much. Especially since (iirc) the POSIX standard already requires atomic meta file ops. – mafutrct Mar 20 at 10:20
@mafutrct I suspect it isn't an issue with a simple file rename, but as the op suggests there are more complex rename operations, such as renaming a file to an name of a file that already exists. If you have LOGFILE and LOGBACKUP and periodically you want to move the logfile to the backup and start a new logfile, you might rename logfile to logbackup. The OS has to delete logbackup, then rename logfile - it's possible that the deletion happens, but not the rename, and then you lose both logfiles, and it's not a trivial problem to resolve in software. – Adam Davis Mar 20 at 12:24
feedback

In Windows Vista and Windows Server 2008 an atomic move function has been added - MoveFileTransacted()

Unfortunately this doesn't help with older versions of Windows.

[Edit] Interesting article here on MSDN: http://blogs.msdn.com/adioltean/archive/2005/12/28/507866.aspx

link|improve this answer
feedback

you still have the rename() call on Windows, though I imagine the guarantees you want cannot be made without knowing the filesystem you're using - no guarantees if you're using FAT for instance.

However, you can use MoveFileEx and use the MOVEFILE_REPLACE_EXISTING and MOVEFILE_WRITE_THROUGH options. The latter has this description in MSDN:

Setting this value guarantees that a move performed as a copy and delete operation is flushed to disk before the function returns. The flush occurs at the end of the copy operation.

I know that's not necessarily the same as a rename operation, but I think it might be the best guarantee you'll get - if it does that for a file move, it should for a simpler rename.

link|improve this answer
2  
To the best of my knowledge, if the destination existed and an I/O error occurs during the data copy step, this "original" destination is lost, thus MoveFileEx is not atomic per your requirements. That's why MoveFileTransacted was added later. – Martin Plante Oct 3 '08 at 18:25
feedback

See ReplaceFile() in Win32 (http://research.microsoft.com/pubs/64525/tr-2006-45.pdf)

link|improve this answer
2  
If you read msdn.microsoft.com/en-us/library/aa365512(VS.85).aspx you'll see that ReplaceFile is a complicated merge operation, with no indication that it's atomic. – Gabe Mar 3 '10 at 2:06
The relevant passage from that MS research paper: "Under UNIX, rename() is guaranteed to atomically overwrite the old version of the file. Under Windows, the ReplaceFile() call is used to atomically replace one file with another." – Matt Z Jan 27 at 20:35
feedback

"The relevant passage from that MS research paper: "Under ...."

This is suggesting that the operation is atomic, but it is misleading and only suitable to create confusion. What is required is atomic delete of the old file and rename of the new file in one indivisible step. These may be two metadata operations which in itself are atomic but the compound is NOT atomic.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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