copendir
函数本身并不直接提供获取文件属性的功能。它的主要作用是打开一个目录流,以便你可以使用其他函数(如 readdir
)来读取目录中的条目。
要获取文件属性,你可以使用 stat
函数。以下是一个简单的示例,展示了如何使用 copendir
和 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");
return EXIT_FAILURE;
}
while ((entry = readdir(dir)) != NULL) {
// 跳过当前目录和上级目录的特殊条目
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
continue;
}
// 构建文件的完整路径
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("Size: %ld bytes\n", file_stat.st_size);
printf("Last modified: %s", ctime(&file_stat.st_mtime));
}
closedir(dir);
return EXIT_SUCCESS;
}
在这个示例中,我们首先使用 opendir
打开当前目录。然后,我们使用 readdir
遍历目录中的每个条目。对于每个条目,我们使用 snprintf
构建文件的完整路径,并使用 stat
获取文件的属性。最后,我们输出文件的大小和最后修改时间。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,请发送邮件至 55@qq.com 举报,一经查实,本站将立刻删除。转转请注明出处:https://www.szhjjp.com/n/1362291.html