有这段代码:
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
void listdir(const char *name, int indent)
{
DIR *dir;
struct dirent *entry;
struct stat buff;
if (!(dir = opendir(name))){
return;
}
while ((entry = readdir(dir)) != NULL) {
if (entry->d_type == DT_DIR) {
//char path[1024];
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0){
continue;
}
//
stat(entry->d_name, &buff);
time_t times = buff.st_ctim.tv_sec;
printf("%s %s", entry->d_name, ctime(×)); //
listdir(entry->d_name, indent + 1);
}
}
closedir(dir);
}
int main(void) {
listdir(".", 0);
return 0;
}
执行时,它给出的 ctime 时间不正确,自 1970 年以来一切都在进行。结果是这样的: Thu Jan 1 05:03:14 1970 时间格式问题?
显然你有某种诱导错误,因为你没有遍历目录树,而是递归调用
listdir()
并且不检查调用的结果stat()
。我有
您的代码更改最少(树遍历对
chdir()
)效果很好。为了使时间格式与输出相匹配,
ls -l
我将st_ctim
(在手册页中的“上次状态更改时间”)替换为st_mtim
(“上次修改时间”)。