博客
关于我
LINUX读取一个目录
阅读量:141 次
发布时间:2019-02-28

本文共 3078 字,大约阅读时间需要 10 分钟。

使用的函数:GNU命令行处理函数getopt(),getopt_long()。
            opendir(),readdir(),closedir()
熟悉GNU命令行处理函数,以及linux目录函数。
#include 
#include
#include
#include
#include
#define err_quit printf#define err_sys printf#define TRUE 1#define FALSE 0#define EXIT_FAILE 0#define EXIT_SUCESS 1#define bool charstatic char g_cur_dir[256] = "";int read_directory(char *dir_name, bool brecurse);void usage(char state, char *str);int main(int argc, char **argv){ int c; char recurse = 0; struct option long_option[]= { {"dirname", no_argument, NULL, 0 }, {"recurse", optional_argument, NULL, 'r'}, {"help", no_argument, NULL, 'h'}, {0, 0, 0, 0 }, }; //read current directory. //if no any params, read current dir files. if(argc < 2) { read_directory("./", TRUE); return ; } //read command line params. while((c = getopt_long(argc, argv, "hr::", long_option, NULL)) != EOF) //while((c = getopt(argc, argv, ":hr::")) != EOF) { switch(c) { case 'r': recurse = 1; break; case 'h': usage(EXIT_SUCESS, argv[0]); break; default: usage(EXIT_FAILE, argv[0]); break; } } if (recurse && (optind == argc)) { read_directory("./", TRUE); exit(0); } //read all files from argv[optind]. for(; optind < argc; ++optind) { read_directory(argv[optind], recurse); } exit(0);}int read_directory(char *dir_name, bool brecurse){ DIR *dp; struct dirent *dir; strcpy(g_cur_dir, dir_name); if (g_cur_dir[strlen(g_cur_dir) -1] == '/') g_cur_dir[strlen(g_cur_dir) -1] = 0; if ((dp = opendir(dir_name)) == NULL) { err_sys("can't open %s. /n", dir_name); return ; } while( (dir = readdir(dp)) != NULL) { if ( brecurse && (DT_DIR == dir->d_type) && (strcmp(dir->d_name, ".") != 0) && (strcmp(dir->d_name, "..") != 0) ) { printf("%s/", g_cur_dir); printf("%s/n", dir->d_name); strcat(g_cur_dir, "/"); strcat(g_cur_dir, dir->d_name); read_directory(g_cur_dir, brecurse); g_cur_dir[strlen(g_cur_dir) - strlen(dir->d_name) - 1] = 0; } else { printf("%s/", g_cur_dir); printf("%s/n", dir->d_name); } } closedir(dp);}void usage(char state, char *str){ if (state == EXIT_FAILE) { printf("/n"); } else { printf("/n"); printf("========================================/n"); printf("read directory:/n"); printf("/n"); printf("Usage: %s [-r] [directory]/n/n", str); printf(" -r: read all files under each directory, recursively. /n"); printf("========================================/n"); printf("/n"); exit(0); }}

转载地址:http://ubld.baihongyu.com/

你可能感兴趣的文章
【洛谷_P1433】吃奶酪
查看>>
【牛客_2020.10.27】交换
查看>>
【SSL_2020.10.28】区间和的和
查看>>
例题6-17 看图写树(Undraw the Trees, UVa 10562)
查看>>
例题 9-3 旅行(Tour, ACM/ICPC SEERC 2005, UVa1347)
查看>>
html中head里的meta标签的用法
查看>>
【学习笔记】NumPy数据存取与函数
查看>>
ssm项目学习8-bootstrap遇到的错误整理篇
查看>>
vector构建邻接表和原始邻接表
查看>>
UNITTEST测试框架的使用
查看>>
赠书和投票 | 你知道中国有哪些Server SAN厂商吗? 投票:你心目最好的HCI品牌是?
查看>>
区块链公链如何才能快起来
查看>>
linus下centos7防火墙设置
查看>>
学习笔记-----分布式事务基础理论,CAP组合方式
查看>>
Base理论介绍
查看>>
HashMap和ArrayList初始大小和扩容后的大小
查看>>
volatile关键字和AtomicInteger
查看>>
RedisTemplate中opsForValue()中的方法
查看>>
redisTemplate.opsForHash()
查看>>
Mac下安装jdk8
查看>>