我有一个C ++程序正在写入Windows 7上的文件。当我调用f.flush()
时,NTFS文件不会变大。有没有办法强制文件刷新?
答案 0 :(得分:2)
你可以看一下:
How do I get the file HANDLE from the fopen FILE structure?
代码如下所示:
FlushFileBuffers((HANDLE) _fileno(_file));
在调用FlusFileBuffers之前不要忘记调用fflush(文件)。
对于std :: fstream和gnu stl,我在我的linux盒子上查了一下,家里没有窗户, 但是应该使用mingw,可能需要一些修改:
#include <cstdio>
#include <cstdlib>
#include <cassert>
#include <fstream>
#include <ext/stdio_filebuf.h>
int main(int argc, char *argv[])
{
assert(argc == 2);
std::ifstream f(argv[1]);
assert(!!f);
/*
//cin, cout etc
__gnu_cxx::stdio_filebuf<char> *stdio_buf = dynamic_cast<__gnu_cxx::stdio_filebuf<char> *>(f.rdbuf());
if (stdio_buf != 0) {
printf("your fd is %d\n", stdio_buf->fd());
return EXIT_SUCCESS;
}
*/
std::basic_filebuf<char> *file_buf = dynamic_cast<std::basic_filebuf<char> *>(f.rdbuf());
if (file_buf != 0) {
struct to_get_protected_member : public std::basic_filebuf<char> {
int fd() { return _M_file.fd(); }
};
printf("your fd is %d\n", static_cast<to_get_protected_member *>(file_buf)->fd());
}
printf("what is going on?\n");
return EXIT_FAILURE;
}
答案 1 :(得分:0)
flush
仅刷新标准库代码保留的内部缓冲区。
要刷新操作系统的缓冲区,您需要/想要调用FlushFileBuffers
(在调用f.flush()
后)。