我是靠谱客的博主 现代白羊,最近开发中收集的这篇文章主要介绍C目录操作,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

C语言读取文件夹内容

    char dirPath[] ="/home/xxxx/TestFiles/chapeter4";
    DIR* dir = opendir(dirPath);
    struct dirent * dirent = readdir(dir);
    while (dirent != NULL) {
        printf("%sn",dirent->d_name);
        dirent = readdir(dir);
    }

C语言遍历文件夹

void printNChar(int n){
    int i;
    for(i = 0 ; i < n ;i++){
        printf("-");
    }
}
/**
 * @brief RecursiveReadfolder2
 * @param n
 * @param fd
 * @param name
 */
void RecursiveReadfolder2(int n,int fd,const char* name){
    struct stat buf;
    if(fstatat(fd,name,&buf,AT_SYMLINK_NOFOLLOW)<0){
        return;
    }
    if(S_ISDIR(buf.st_mode)){

        int subfd = openat(fd,name,O_DIRECTORY|O_NOFOLLOW);
        DIR* dir = fdopendir(subfd);
        struct dirent * dirent  = NULL;
        while ((dirent = readdir(dir)) != NULL) {
            printNChar(n);
            printf("%sn",dirent->d_name);
            if(strcmp(dirent->d_name,".") != 0 && strcmp(dirent->d_name,"..") != 0)
                RecursiveReadfolder2(n+2,subfd,dirent->d_name);
        }
    }/*else{
        printNChar(n);
        printf("%sn",name);
    }*/

}


void RecursiveReadfolder(const char* path){
    struct stat buf;
    int n=2;
    if(lstat(path,&buf)<0){
        return;
    }
    printf("%sn",path);
    if(S_ISDIR(buf.st_mode)){
        int fd = open(path,O_DIRECTORY);
        DIR* dir = fdopendir(fd);
        struct dirent * dirent = NULL;
        while ((dirent = readdir(dir)) != NULL) {
            printNChar(n);
            printf("%sn",dirent->d_name);
            if(strcmp(dirent->d_name,".") != 0 && strcmp(dirent->d_name,"..") != 0)
                RecursiveReadfolder2(n+2,fd,dirent->d_name);
        }
    }/*else{
        printNChar(n);
        printf("%sn",path);
    }*/

}

最后

以上就是现代白羊为你收集整理的C目录操作的全部内容,希望文章能够帮你解决C目录操作所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(27)

评论列表共有 0 条评论

立即
投稿
返回
顶部