这会创建文件,但不会写入任何内容。
std::ofstream outstream;
FILE * outfile;
outfile = fopen("/usr7/cs/test_file.txt", "w");
__gnu_cxx::stdio_filebuf<char> filebuf(outfile, std::ios::out);
outstream.std::ios::rdbuf(&filebuf);
outstream << "some data";
outstream.close();
fclose(outfile);
我知道还有其他简单的解决方案可以实现输出,但是我需要使用这个非标准的 filebuf 在编辑时锁定文件,以便其他进程无法打开文件。我不知道为什么这不起作用。