我正在运行下面的代码,但我无法重定向到文件。该文件已生成,但没有任何内容。如果我删除最后一个dup2(saveout,1)
语句,我可以创建并写入文件,但我无法返回到终端,这很重要。一旦我将dup2(saveout,1)
放回我的代码中,重定向就会停止工作,但我可以回到终端。我不明白为什么会这样。我想重定向并返回终端。
的main.cpp
#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;
}
答案 0 :(得分:1)
这是一个文件权限问题,您应该阅读您正在使用的函数的手册页。
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),
主要是它的等价物,但你不能附加文本,因为&#34; creat()相当于open(),其标志等于O_CREAT | O_WRONLY | O_TRUNC&#34;
答案 1 :(得分:0)
printf
is buffered by default.(输出到tty的逐行输出,输出到别的输出可能不同)。在致电dup2(..., 1)
之前,您应该使用fflush
:
fflush(stdout);
答案 2 :(得分:0)
第二个dup2(saveout,1);
将失败,因为您已关闭saveout
。