gpt4 book ai didi

检查文件的修改日期

转载 作者:行者123 更新时间:2023-11-30 14:31:06 25 4
gpt4 key购买 nike

我正在检查文件是否已被修改,以便刷新内容...但是,我需要一些改进:

  • 如何测试 stat 的返回值来判断它是否失败?
  • 返回的 errno 数字可能会因 glibc 版本而异,对吧?在这种情况下,执行 errno== 是没有用的...我该如何解决这个问题?

int is_refreshing_needed (char * path)
{
int refresh_content;
struct stat file;
stat(path, &file);
//File does not exist or Permission Denied or the file has not been modified
if( errno == 2 || errno == 13 || file.st_atime > file.st_mtime ) {
refresh_content=0;
}
else {
refresh_content=1;
}
return refresh_content;
}

最佳答案

我的系统上 stat(2) 的手册页指出:

RETURN VALUES     Upon successful completion, the value 0 is returned; otherwise the     value -1 is returned and the global variable errno is set to indicate the     error.

You must check the return value of the call to stat() to determine whether the call succeeded or failed. So:

if (stat(path, &file) != 0) {
return 0;
}

关于检查文件的修改日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1985094/

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