我正在尝试学习POSIX中的基本IO功能,我编写了以下代码,但它不起作用,当我尝试执行代码时返回“错误的文件描述符”错误:
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main(void)
{
int nfd;
ssize_t ret;
mode_t mode = S_IRWXU | S_IRWXG;
nfd = openat(AT_FDCWD, "idx.txt", O_APPEND | O_SYNC | O_CREAT, mode);
if (-1 == nfd)
{
perror("openat()");
exit(EXIT_FAILURE);
}
ret = write(nfd, "HELLO", 5);
if (-1 == ret)
{
perror("write()");
exit(EXIT_FAILURE);
}
close(nfd);
return 0;
}
我想以O_APPEND模式写入文件。但是:
$ touch idx.txt # it does not work even if the file does not exist already
$ ./a.out
write(): Bad file descriptor
答案 0 :(得分:4)
您没有告诉系统您要写入文件,向标志添加O_WRONLY或O_RDWR使其工作。