4

这会创建文件,但不会写入任何内容。

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 在编辑时锁定文件,以便其他进程无法打开文件。我不知道为什么这不起作用。

4

1 回答 1

2

std::ostream已经有一个构造函数在做正确的事情:

#include <ext/stdio_filebuf.h>
#include <iostream>
#include <fcntl.h>

int main() {
    auto file = fopen("test.txt", "w");
    __gnu_cxx::stdio_filebuf<char> sourcebuf(file, std::ios::out);
    std::ostream out(&sourcebuf);
    out << "Writing to fd " << sourcebuf.fd() << std::endl;
}

请记住,它在销毁时stdio_filebuf不会关闭FILE*,因此请记住在需要时自己执行此操作。

于 2015-05-15T15:54:37.493 回答