前端之家收集整理的这篇文章主要介绍了
使用C中的utime在UNIX上获取文件修改时间,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
教授告诉我,你可以通过使用utime.h来
获取文件的最后
修改时间.但是,该手册页似乎引用utime()只设置这个值.如何在UNIX系统上最后一次在C中更改
文件?
这将返回
文件的mtime,即“上
次数据
修改的时间”.请注意,
Unix还有一个概念ctime,“最后一个状态变化的时间”(另见
ctime,atime,mtime).
#include <sys/types.h>
#include <sys/stat.h>
time_t get_mtime(const char *path)
{
struct stat statbuf;
if (stat(path,&statbuf) == -1) {
perror(path);
exit(1);
}
return statbuf.st_mtime;
}
原文链接:https://www.f2er.com/c/115749.html