linux c遍历文件夹的方法比较简单,使用c来实现
#include <iostream> #include <stdio.h> #include <sys/types.h> #include <dirent.h> #include <sys/dir.h> #include <sys/stat.h> ...
enum{ DT_UNKNOWN = 0, //未知类型 DT_FIFO = 1, //管道 DT_CHR = 2, //字符设备文件 DT_DIR = 4, //目录 DT_BLK = 6, //块设备文件 DT_REG = 8, //普通文件 DT_LNK = 10, //连接文件 DT_SOCK = 12, //套接字类型 DT_WHT = 14 //};
void loopDir(const char *dir_path) { char temp[256] = {0}; struct dirent *pdirent; DIR *d_info = opendir(dir_path); if (d_info) { while ((pdirent = readdir(d_info)) != NULL) { if (pdirent->d_type & DT_REG) { //普通文件 } if (pdirent->d_type & DT_DIR) { //目录,递归 } } } } ...
时间: 2024-10-09 11:31:21