copendir
函数本身并不直接读取文件属性,而是用于打开一个目录流,以便后续使用其他函数(如 readdir
)来读取目录中的文件和子目录。如果你想要获取目录中文件的属性,你需要在成功打开目录流之后,使用 readdir
函数读取目录项,并结合 stat
或 lstat
函数来获取每个文件或目录的属性。
以下是一个简单的示例,展示了如何使用 copendir
、readdir
和 stat
函数来读取目录中文件的属性:
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <sys/stat.h>
#include <string.h>
int main() {
DIR *dir;
struct dirent *entry;
struct stat file_stat;
char path[1024];
// 打开目录
dir = opendir(".");
if (dir == NULL) {
perror("opendir");
return EXIT_FAILURE;
}
// 读取目录中的每个条目
while ((entry = readdir(dir)) != NULL) {
// 跳过当前目录和上级目录的特殊条目
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
continue;
}
// 构建文件的完整路径
snprintf(path, sizeof(path), "./%s", entry->d_name);
// 获取文件属性
if (stat(path, &file_stat) == -1) {
perror("stat");
closedir(dir);
return EXIT_FAILURE;
}
// 打印文件属性
printf("File: %s\n", entry->d_name);
printf("Size: %ld bytes\n", file_stat.st_size);
printf("Permissions: %o\n", file_stat.st_mode);
printf("Last modified: %s", ctime(&file_stat.st_mtime));
}
// 关闭目录流
closedir(dir);
return EXIT_SUCCESS;
}
在这个示例中,我们首先使用 opendir
函数打开当前目录(.
)。然后,我们使用 readdir
函数循环读取目录中的每个条目。对于每个条目,我们构建文件的完整路径,并使用 stat
函数获取文件的属性。最后,我们打印出文件的大小、权限和最后修改时间等信息。
请注意,这个示例仅用于演示目的,实际使用时可能需要根据具体需求进行调整。