在C中重定向stdout时的奇怪行为

时间:2012-01-08 16:56:48

标签: c file printf stdout dup

我正在尝试将stdout重定向到一个文件,然后将其恢复为C中的原始文件,但我面临以下奇怪的问题 - 下面的代码成功写入了 in stdout
in stdout
在stdout和in file的相应文件中都可以。

#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#define STDOUT 1
int main(int argc, char* argv[]){
    printf("in stdout \n");
    int old_out = dup(STDOUT);
    close(STDOUT);
    int fd = open("./redirected",O_CREAT|O_RDWR|O_TRUNC,0777);
    printf("in file \n");
    close(fd);
    dup(old_out);
    printf("in stdout\n");
    return EXIT_SUCCESS;
}

但是,删除我的主要功能的第一行:

#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#define STDOUT 1
int main(int argc, char* argv[]){
    int old_out = dup(STDOUT);
    close(STDOUT);
    int fd = open("./redirected",O_CREAT|O_RDWR|O_TRUNC,0777);
    printf("in file \n");
    close(fd);
    dup(old_out);
    printf("in stdout\n");
    return EXIT_SUCCESS;
}

导致 in file
in stdout
写在stdout上,没有写入文件。我想知道这是怎么发生的?谢谢你的帮助。

1 个答案:

答案 0 :(得分:4)

这是一个缓冲问题。您在“文件”中写入的缓冲区在重新安装stdout之前未刷新,因此输出将转到stdout而不是文件。添加fflush(stdout);已修复此处。