Как получить дескриптор файла из ofstream

Мне нужно вызвать fsync () для защиты моих данных. Можете ли вы помочь мне получить дескриптор файла от ofstream.

string tmpconfig("config.tmp");
ofstream tcfg(tmpconfig.c_str());
if(tcfg)
{
tcfgNV.compactPrint(tcfg);
tcfg.flush();
if(!tcfg.good())
{
tcfg.close();
::remove(tmpconfig.c_str());
cout << "Failed to write the main configuration file: " << topconfig << endl;
return false;
}
REPORT_INFO("Syncing the file: " << topconfig);
// TODO I need to call fsync() here to secure my data.
//tcfg.pubsync();
tcfg.close();
}

1

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]