6人参与 • 2025-04-02 • 系统进程
本文介绍如何在linux系统中使用c语言高效筛选遍历目录。 opendir 和 readdir 函数是目录遍历的常用工具,但若需筛选特定类型文件,则需额外处理。以下代码示例演示如何实现这一功能:
代码示例:
#include <stdio.h> #include <stdlib.h> #include <dirent.h> #include <string.h> #include <sys/stat.h> // 函数:检查文件类型是否匹配 int checkfiletype(const char *path, const char *type) { if (strcmp(type, "all") == 0) return 1; // 不筛选 char ext[10]; const char *dot = strrchr(path, '.'); if (dot && dot > path) { size_t len = dot - path; if (len >= sizeof(ext)) len = sizeof(ext) - 1; strncpy(ext, dot + 1, len); ext[len] = '\0'; } else { strcpy(ext, ""); } return strcmp(ext, type) == 0; } // 函数:递归遍历目录并筛选 void traversedir(const char *path, const char *filter) { dir *dir = opendir(path); if (dir == null) { perror("opendir"); return; } struct dirent *entry; while ((entry = readdir(dir)) != null) { if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) continue; char fullpath[path_max]; snprintf(fullpath, sizeof(fullpath), "%s/%s", path, entry->d_name); struct stat st; if (stat(fullpath, &st) == -1) { perror("stat"); continue; } if (s_isdir(st.st_mode)) { traversedir(fullpath, filter); } else if (s_isreg(st.st_mode)) { if (checkfiletype(fullpath, filter)) { printf("文件: %s\n", fullpath); } } } closedir(dir); } int main(int argc, char *argv[]) { if (argc != 3) { fprintf(stderr, "用法: %s <目录路径> <过滤器>\n", argv[0]); fprintf(stderr, "过滤器示例:\n"); fprintf(stderr, " all - 所有文件\n"); fprintf(stderr, " txt - .txt文件\n"); fprintf(stderr, " jpg,png - .jpg或.png文件\n"); return exit_failure; } const char *directory = argv[1]; const char *filter = argv[2]; traversedir(directory, filter); return exit_success; }
代码说明:
编译和运行:
改进方向:
这个改进后的示例提供了更清晰的代码结构和更强大的筛选功能,方便用户根据需求进行调整和扩展。 python实现方式类似,但可以使用 os.walk 和 fnmatch 模块简化代码。
以上就是如何用copendir实现linux目录的筛选遍历的详细内容,更多请关注代码网其它相关文章!
您想发表意见!!点此发布评论
版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。
发表评论