Alternative to Fsync for windows c++
Asked Answered
A

3

10

Is there an alternative to fsync for windows? (C++ builder)

Fsync required to include unistd.h and it's only for unix systems

Thanks!

Aromatize answered 14/10, 2015 at 18:45 Comment(1)
FlushFileBuffers?King
M
5

_commit looks about right, it takes a file descriptor just like fsync does:

The _commit function forces the operating system to write the file associated with fd to disk. This call ensures that the specified file is flushed immediately, not at the operating system's discretion.

Microphone answered 10/7, 2021 at 2:1 Comment(1)
AFAIK it internally calls FlushFileBuffersMahaffey
S
2

The fflush function may do what you need, but it only applies to file handles.

Alternately, FlushFileBuffers may work for you, but it's Windows specific.

Siloxane answered 14/10, 2015 at 18:51 Comment(5)
What do you mean by "it only applies to file handles" ? If I used by file* and fopen so fflush will be enough?Aromatize
@Aromatize - Correct, fflush is meant to work on FILE * types, so you should be good to go.Siloxane
It doesn't work! The full story is that I write file of ~50MB and old file is also exists . After I write it, then I copy it to other location on PC but when I do the copy the new file is still doesn't updating so it copy the old file or corrupted file of the new version... Any ideas?Aromatize
So you're trying to keep two different files in sync across computers? That's not what fsync or fflush does at all. You might want to open a new question and include that specific information.Siloxane
fflush flushes the program's I/O buffers to the kernel syscalls. It does not emulate or call fsync or FlushFileBuffers, both of which make sure that the kernel has written its buffers to disk. This is an important distinction.Tercel
M
2

From the man-page:

fflush() forces a write of all user-space buffered data for the given output or update stream via the stream's underlying write function.

The mentioned write function tells the operating system what the contents of the file should be. At this point all changes will be held in filesystem caches before actually being committed to disk.

The POSIX function fsync() tells the operating system to sync all changes from its caches to disk. As others have said you can use FlushFileBuffers on the Windows platform.

Meistersinger answered 15/11, 2017 at 14:8 Comment(1)
fflush() has nothing to do with fsync() - they're very different buffers. fflush() flushes app-level buffers (which are lost in case of app crash) - and is relatively cheap, fsync() flushes OS-level buffers - which is usually necessary only if we have to consider OS crash too (!) - and is MUCH more expensive.Encrust

© 2022 - 2024 — McMap. All rights reserved.