【linux c开发】stat opendir目录及文件遍历实例

#include <stdio.h>
#include <sys/stat.h>
#include <dirent.h>
#include <stdlib.h>

void show_files(char *path_name)
{
    struct stat file_stat;
    DIR *pdir_name = NULL;
    struct dirent *pdir_subname = NULL;
    char filename_buf[1024] = { 0 };

    if(0 == lstat(path_name,&file_stat))
    {
        if(S_ISREG(file_stat.st_mode))
        {
            printf("reguler file is %s!\n",path_name);
        }
        else if(S_ISDIR(file_stat.st_mode))
        {
            printf("dir is %s \n",path_name);
            if(NULL == (pdir_name = opendir(path_name)))
            {
                exit(0);
            }
            while((pdir_subname = readdir(pdir_name)) != NULL)
            {
                if(pdir_subname->d_name[0] == '.')
                {
                    continue;
                }
                snprintf(filename_buf,sizeof(filename_buf),"%s/%s",path_name,pdir_subname->d_name);
                show_files(filename_buf);
            }
        }
    }
    
    return;
}

void main(int argc , char *argv[])
{
    struct stat file_stat;
    if(argc < 2)
    {
        printf("parameter error! FILE %s,LINE %d\n",__FILE__,__LINE__);
        exit(0);
    }
    if(0 != lstat(argv[1],&file_stat))
    {
        
        printf("parameter error! FILE %s,LINE %d\n",__FILE__,__LINE__);
    }
    else
    {
        if(S_ISREG(file_stat.st_mode))
        {
            printf("%s is a reguler file!\n",argv[1]);
        }
        else if(S_ISDIR(file_stat.st_mode))
        {
            show_files(argv[1]);
        }
        else
        {
            printf("%s is other type file",argv[1]);
        }    
    }
    exit(0);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值