首页 > 代码库 > 2017/04/23学习笔记
2017/04/23学习笔记
#include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <dirent.h> int getFileNum(char* root){ //open dir DIR* dir = NULL; dir = opendir(root); if(dir == NULL){ perror("opendir"); exit(1); } //遍历 struct dirent* ptr = NULL; char path[1024] = {0}; int total = 0; while((ptr = readdir(dir)) != NULL){ if(strcmp(ptr->d_name,".") == 0 || strcmp(ptr->d_name,"..")==0){ continue; } if(ptr->d_type==DT_DIR){ sprintf(path,"%s/%s",root,ptr->d_name); total += getFileNum(path); } if(ptr->d_type==DT_REG){ total++; } } closedir(dir); return total; } int main(){ int result = getFileNum("/dafu"); printf("result=%d",result); return 0; }
2017/04/23学习笔记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。