在写入文件和标准输出之间切换

发布于 2024-12-01 18:54:41 字数 461 浏览 2 评论 0原文

我想在写入文件和写入 stdout 之间切换 我无法使用 fprintf,只能使用 printffreopen 像这样的事情:

for(size_t i;i<100;++i)
{
     if(i%2)
     {
        freopen("tmp","w",stdout);
        printf("%d\n",i);
     }
     else
     {
        //return to write to stdout?
        printf("%d\n",i);
     }
}

我怎样才能返回写入stdout

更新

我编写跨平台应用程序,dup无法使用。

I want to switch between writing to the file and to the stdout
I can't use fprintf, but only printf and freopen
something like this:

for(size_t i;i<100;++i)
{
     if(i%2)
     {
        freopen("tmp","w",stdout);
        printf("%d\n",i);
     }
     else
     {
        //return to write to stdout?
        printf("%d\n",i);
     }
}

How can I return to writing to the stdout?

Update

I write cross-platform application and dup can't be used.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我乃一代侩神 2024-12-08 18:54:41

切勿使用freopen。它无法实现你想要的功能,而且是一个非常危险的功能。如果失败,唯一安全的做法就是立即终止程序或确保不再访问 stdout

有一种方法可以使用 dupdup2 在 POSIX 系统上执行您想要的操作。它看起来像这样:

fflush(stdout);
int old_stdout = dup(1);
int new_stdout = open("whatever", O_WRDONLY|O_CREAT, 0666);
dup2(new_stdout, 1);
close(new_stdout);
/* use new stdout here */
fflush(stdout);
dup2(old_stdout, 1);
close(old_stdout);

Never use freopen. It cannot achieve what you want, and it's a very dangerous function. If it fails, the only safe thing you can do is immediately terminate the program or ensure that stdout is never accessed again.

There is a way to do what you want on POSIX systems with dup and dup2. It looks something like this:

fflush(stdout);
int old_stdout = dup(1);
int new_stdout = open("whatever", O_WRDONLY|O_CREAT, 0666);
dup2(new_stdout, 1);
close(new_stdout);
/* use new stdout here */
fflush(stdout);
dup2(old_stdout, 1);
close(old_stdout);
爱,才寂寞 2024-12-08 18:54:41

您需要复制文件描述符,然后重新打开打开的描述符。为什么不能使用fprintf? (这是作业吗?)

You need to dup the file descriptors, and reopen to the open descriptor. Why can't you use fprintf? (Is this homework?)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文