在 Debian 系统中,readdir 函数用于读取目录中的文件和子目录
d_name: 文件或目录的名称。d_type: 文件类型,例如 DT_REG(常规文件)、DT_DIR(目录)等。d_namlen: 文件或目录名称的长度。然而,readdir 函数本身并不直接提供文件的时间戳信息。要获取文件的时间戳,您需要使用 stat 函数。以下是一个简单的示例,展示了如何使用 readdir 和 stat 函数来获取目录中文件的时间戳:
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <sys/stat.h>
#include <unistd.h>
int main() {
DIR *dir;
struct dirent *entry;
struct stat file_stat;
dir = opendir(".");
if (dir == NULL) {
perror("opendir");
exit(EXIT_FAILURE);
}
while ((entry = readdir(dir)) != NULL) {
char path[PATH_MAX];
snprintf(path, sizeof(path), "./%s", entry->d_name);
if (stat(path, &file_stat) == -1) {
perror("stat");
continue;
}
printf("File: %s\n", entry->d_name);
printf("Last modified time: %s", ctime(&file_stat.st_mtime));
}
closedir(dir);
return 0;
}
在这个示例中,我们首先使用 opendir 打开当前目录,然后使用 readdir 遍历目录中的每个条目。对于每个条目,我们使用 snprintf 构建文件的完整路径,然后使用 stat 函数获取文件的状态信息。最后,我们使用 ctime 函数将文件的最后修改时间(st_mtime)转换为可读的字符串格式,并将其打印出来。