我正在学习文件描述符,并编写了以下代码:
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
int fdrd, fdwr, fdwt;
char c;
main (int argc, char *argv[]) {
if((fdwt = open("output", O_CREAT, 0777)) == -1) {
perror("Error opening the file:");
exit(1);
}
char c = 'x';
if(write(fdwt, &c, 1) == -1) {
perror("Error writing the file:");
}
close(fdwt);
exit(0);
}
,但我得到了:Error writing the file:: Bad file descriptor
我不知道会出什么问题,因为这是一个非常简单的例子。
试试这个:
open("output", O_CREAT|O_WRONLY, 0777)
我认为仅靠O_CREAT
是不够的。尝试将O_WRONLY
作为标志添加到打开命令中。
根据打开的(2)手册页:
参数标志必须包括以下访问模式之一:O_RDONLY、O_WRONLY或O_RDWR。
所以,是的,按照其他人的建议,请将您的open
更改为open("output", O_CREAT|O_WRONLY, 0777));
。如果需要读取文件,请使用O_RDWR
。您可能还需要O_TRUNC
——有关详细信息,请参阅手册页。
我的问题是我使用了S_IRUSR
常量,然后它与O_CREAT
一起创建了一个无法写入的文件。所以第一次运行还可以,但在第二次运行时,我得到了错误的文件描述符错误消息。
使用S_IRUSR | S_IWUSR
解决了这个问题。当然,创建不好的文件必须删除。
int outfd = open("output.ppm", O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR);