免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1869 | 回复: 5
打印 上一主题 下一主题

求助: 关于遍历目录 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-31 15:50 |只看该作者 |倒序浏览
#include <unistd.h>
#include <stdio.h>
#include <dirent.h>
#include <string.h>
#include <sys/stat.h>
#include <stdlib.h>

void printdir(char *dir, int depth)
{
    DIR *dp;
    struct dirent *entry;
    struct stat statbuf;

    if((dp = opendir(dir)) == NULL)
    {
        fprintf(stderr, "cannot open directory: %s\n", dir);
        return;
    }

    chdir(dir);
    while((entry = readdir(dp)) != NULL)
    {
        lstat(entry->d_name, &statbuf);
        if(S_ISDIR(statbuf.st_mode))
        {
            if(strcmp(".", entry->d_name) == 0||
               strcmp("..", entry->d_name) == 0)
                continue;
            printf("%*s%s/\n", depth,"",entry->d_name);
            printdir(entry->d_name, depth+4);
        }
        else
        {
            printf("%*s%s/\n", depth,"",entry->d_name);
        }
    }

    chdir("..");
    closedir(dp);
}

int main()
{
    printf("Directory scan of /home:\n");
    printdir("/home",0);
    printf("done.\n");

    exit(0);
}
这个程序是遍历/home目录及其子目录下的所有文件
不明白为什么要加入红色的部分?
为什么要进入子目录才可以呢?原因何在?
ps:这是linux程序设计一书中的例子

thx

论坛徽章:
0
2 [报告]
发表于 2009-08-01 00:02 |只看该作者
读目录只是读目录的内容,目录也是一个文件

论坛徽章:
0
3 [报告]
发表于 2009-08-01 00:20 |只看该作者
因为while循环中还要调用printdir遍历子目录下的文件

论坛徽章:
0
4 [报告]
发表于 2009-08-08 15:36 |只看该作者

回复 #3 hackisle 的帖子

从楼主代码中,我好像看不出是遍历所有子目录

论坛徽章:
0
5 [报告]
发表于 2009-08-08 17:43 |只看该作者

回复 #4 caojengineer 的帖子

chdir(dir);
    while((entry = readdir(dp)) != NULL)
    {
        lstat(entry->d_name, &statbuf);
        if(S_ISDIR(statbuf.st_mode))
        {
            if(strcmp(".", entry->d_name) == 0||
               strcmp("..", entry->d_name) == 0)
                continue;
            printf("%*s%s/\n", depth,"",entry->d_name);
            printdir(entry->d_name, depth+4);->在这里递归调用printdir
        }
        else
        {
            printf("%*s%s/\n", depth,"",entry->d_name);
        }
    }
    chdir("..");

——————————————

    if((dp = opendir(dir)) == NULL)->这里用open的参数是相对路径,所以while循环前需要chdir
    {
        fprintf(stderr, "cannot open directory: %s\n", dir);
        return;
    }

论坛徽章:
3
CU十二周年纪念徽章
日期:2013-10-24 15:41:34摩羯座
日期:2013-12-01 00:21:362015年迎新春徽章
日期:2015-03-04 09:49:45
6 [报告]
发表于 2009-08-08 22:21 |只看该作者

回复 #5 hackisle 的帖子

恩 恩 已经说的很清楚了。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP