linux 下的文件目录操作之遍历目录

Posted 小青年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 下的文件目录操作之遍历目录相关的知识,希望对你有一定的参考价值。

  通过递归调用读取目录和文件信息去遍历整个目录:

  示例代码:

 1 #include <unistd.h>
 2 #include <stdio.h>
 3 #include <dirent.h>
 4 #include <string.h>
 5 #include <sys/stat.h>
 6 #include <stdlib.h>
 7 
 8 
 9 void printdir(char * dir, int depth)
10 {
11     DIR * dp = opendir(dir);
12     if (NULL == dp)
13     {
14         fprintf(stderr, "cannot open directory: %s\\n", dir);
15         return;
16     }
17     chdir(dir);
18     struct dirent * entry;
19     struct stat statbuf;
20     while ((entry = readdir(dp)) != NULL)
21     {
22         stat(entry->d_name, &statbuf);
23         if (S_ISDIR(statbuf.st_mode))
24         {
25             if (strcmp(".", entry->d_name) == 0 || strcmp("..", entry->d_name) == 0)
26                 continue;
27             printf("%*s%s/\\n", depth, "", entry->d_name);
28             printdir(entry->d_name, depth + 4);
29         }
30         else
31             printf("%*s%s\\n", depth, "", entry->d_name);
32         //printf("%*s",4,"*"); 该函数表示输出"___*",前面输出3个空格。
33         //如果是printf("%*s",4,"**");则表示输出"__**",前面输出2个空格。
34     }
35     chdir("..");
36     closedir(dp);
37 }
38 
39 int main(int argc, char * argv[])
40 {
41     char * topdir, pwd[2] = ".";
42     if (argc < 2)
43         topdir = pwd;
44     else
45         topdir = argv[1];
46     printf("Directory scan of %s\\n", topdir);
47     printdir(topdir, 0);
48     printf("done.\\n");
49     exit(0);
50 }

 

  运行结果:

  

 

以上是关于linux 下的文件目录操作之遍历目录的主要内容,如果未能解决你的问题,请参考以下文章

Linux之文件基础操作命令

交互式shell脚本遍历文件目录下的所有文件和目录(绝对路径)

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

Linux基础命令之文件和目录操作

交互式shell脚本遍历文件目录下的所有文件和目录(绝对路径)

Linux Shell之递归读取指定目录下的所有文件