在 Linux 中,copendir()
函数用于打开一个目录流,而不是直接获取文件属性。要获取目录中的文件属性,你需要结合使用 readdir()
和其他相关函数。以下是一个简单的示例,展示了如何使用这些函数获取目录中的文件属性:
#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) {
// 跳过当前目录(.)和上级目录(..)条目
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
continue;
}
// 构建文件的完整路径
char file_path[PATH_MAX];
snprintf(file_path, sizeof(file_path), "./%s", entry->d_name);
// 获取文件属性
if (stat(file_path, &file_stat) == -1) {
perror("stat");
continue;
}
// 输出文件属性
printf("File: %s\n", entry->d_name);
printf("Size: %ld bytes\n", file_stat.st_size);
printf("Last modified: %s", ctime(&file_stat.st_mtime));
}
// 关闭目录
closedir(dir);
return 0;
}
这个示例程序首先使用 opendir()
打开当前目录(.
),然后使用 readdir()
读取目录中的每个条目。对于每个条目,我们使用 snprintf()
构建文件的完整路径,然后使用 stat()
函数获取文件的属性。最后,我们输出文件的大小和最后修改时间。
注意:在实际应用中,你可能需要根据需求调整代码,例如处理符号链接、错误处理等。