gpt4 book ai didi

c++ - 统计不工作

转载 作者:太空狗 更新时间:2023-10-29 23:53:52 25 4
gpt4 key购买 nike

我正在编写一个文件观察器和统计器,由于某种原因无法获取文件信息,为什么?


struct stat info;
int fd = open(path, O_EVTONLY);
if (fd <= 0){
exit(-1);
}
int result = fstat(fd, &info);
if (!result){
exit(-1); //This happens! Errno says "No such file or directory" but that cant be because open would've failed
}

最佳答案

int result = fstat(fd, &info);
if (!result){
exit(-1);
}

检查 fstat 手册页,成功返回 0。

关于c++ - 统计不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8779225/

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