0

我正在运行下面的代码,但无法重定向到文件。该文件已制作,但没有任何内容放入其中。如果我删除最后一条dup2(saveout,1)语句,我可以创建并写入文件,但我无法返回终端,这很重要。一旦我把dup2(saveout,1)后面的代码放入我的代码中,重定向就会停止工作,但我可以回到终端。我不明白为什么会这样。我想重定向并返回终端。

主文件

#include <cstdlib>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string>
#include <iostream>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
using namespace std;

void printmessage() {
    printf("this is the message\n");
}

int main(int argc, char** argv) {    
    int saveout;
    int fd;
    saveout = dup(1);

    for (int i = 0; i < 10; i++) {
        fd = creat("/home/carl/example.txt",O_CREAT|O_APPEND);
        dup2(fd, 1);
        close(fd);
        printf("Testing the message");
        printmessage();

       dup2(saveout,1);
       close(saveout);
    }
    return 0;
}
4

3 回答 3

2

这是一个文件权限问题,您应该阅读您正在使用的函数的手册页。

creat() takes as first argument the filename, and as second the file creation rights, not its opening mode.

creat()函数是一个简单的open() 调用,带有一些特定的标志,因此您只需设置权限。

如果你想打开你的文件,如果他不存在就创建它,使用

open(filename, O_CREAT | O_RDWR | O_APPEND, 0600) for example, or
creat(filename, 0600),

这主要是等效的,但是您将无法附加文本,因为“creat() 等效于 open(),其标志等于 O_CREAT | O_WRONLY | O_TRUNC”

于 2013-02-22T18:33:30.413 回答
0

printf默认情况下被缓冲。(逐行输出到 tty,输出到其他东西可能不同)。在您两次致电之前dup2(..., 1),您应该使用以下内容冲洗fflush

fflush(stdout);
于 2013-02-22T18:27:52.227 回答
0

第二个dup2(saveout,1);将失败,因为您关闭了saveout.

于 2013-02-22T22:16:03.733 回答