Tagged Questions
2
votes
2answers
1k views
How to do fsync on an ofstream?
I want to make sure that an ofstream has been written to the disk device. What's the portable way (portable on POSIX systems) of doing this?
Does that solve the problem if I open the file separately ...
0
votes
1answer
43 views
Does the order/direction of fsync matter?
Let's say I write out some files and directories to a usb thumb drive.
/media/drive1/newFolder1/
/media/drive1/newFolder1/newfile1
/media/drive1/newFolder1/newfile2
I've created a folder, ...