We have the following code in a Windows application, and it appears to be causing file corruption occasionally. The code is used to do asynchronous file writes - pairs of filenames and strings are queued up, and periodically a task is run to empty the queue.
const std::string tempFilename( item.first + c_TempFileSuffix );
std::ofstream out( tempFilename.c_str(), std::ios_base::out );
out << item.second;
out.close();
if( FileExists( item.first ) )
{
DeleteFile( item.first );
}
RenameFile( tempFilename, item.first );
The functions FileExists, DeleteFile, and RenameFile are thin wrappers around boost::filesystem functions.
Occasionally we're seeing garbled files. Any ideas? Thanks.