gpt4 book ai didi

c - Linux C,打开一个存在的文件,EEXIST错误bug

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:26:24 24 4
gpt4 key购买 nike

使用此代码,我不确定为什么在调用 open() 后出现错误(EEXIST 17 文件存在)。该文件确实存在。

int flags = O_WRONLY | O_CREAT | O_APPEND | S_IRWXU;
int fd = open("./atomic.txt", flags);

if(fd==-1)
{
printf("error code: %d \n", errno);
perror("open.. ");
exit(0);
}

最佳答案

S_IRWXU模式的一部分,而不是标志:

int flags = O_WRONLY | O_CREAT | O_APPEND;
int mode = S_IRWXU;
int fd = open("./atomic.txt", flags, mode);

很可能发生的事情是 S_IRWXU 正在设置 flagsO_EXCL 位因此 open()如果文件已经存在,将失败。 确实是这样,至少在我的系统上是这样:

/usr/include/fcntl.h:
#define S_IRWXU (__S_IREAD|__S_IWRITE|__S_IEXEC)
/usr/include/x86_64-linux-gnu/bits/stat.h:
#define __S_IREAD 0400
#define __S_IWRITE 0200
#define __S_IEXEC 0100
/usr/include/asm-generic/fcntl.h:
#define O_EXCL 00000200

可以看到__S_IWRITE模式和O_EXCL标志都是0200

关于c - Linux C,打开一个存在的文件,EEXIST错误bug,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46750732/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com