LINUX下用C遍历一个目录的代码

本文介绍了一个使用C语言实现的目录遍历代码,该代码能够递归地读取指定路径下的所有文件和子目录。对于每个遇到的文件,它会检查是否符合预定义的文件名前缀和后缀(例如,'converted-'和'.h264'),如果匹配,则进行特定的处理。此外,代码还处理了符号链接和子目录。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

代码如下: 

#include <dirent.h>


#define VALID_FILE_HEAD  "converted-"
#define VALID_FILE_TAIL  ".h264"

#define MAX_BUFFER_SIZE  1024

/*
enum
  {
    DT_UNKNOWN = 0,
# define DT_UNKNOWN     DT_UNKNOWN

    DT_FIFO = 1,
# define DT_FIFO        DT_FIFO

    DT_CHR  = 2,
# define DT_CHR         DT_CHR

    DT_DIR  = 4,
# define DT_DIR         DT_DIR

    DT_BLK  = 6,
# define DT_BLK         DT_BLK

    DT_REG  = 8,
# define DT_REG         DT_REG

    DT_LNK  = 10,
# define DT_LNK         DT_LNK

    DT_SOCK = 12,
# define DT_SOCK        DT_SOCK

    DT_WHT  = 14
  };
*/

int process_directory(const int view, const char* pPath)
{
    DIR           *pDir;
    struct dirent *pFile;
    int   validCount = 0;
 
    if ((pDir=opendir(pPath)) == NULL)
    {
        perror("Open dir error...");
        exit(1);
    }
 
    while ((pFile=readdir(pDir)) != NULL)
    {
        if (strcmp(pFile->d_name, ".") == 0 || strcmp(pFile->d_name, "..") == 0)
        {
             ///current dir OR parrent dir
             continue;
        }
        else if (pFile->d_type == DT_REG)
        {
             ///file
             char fullPath[MAX_BUFFER_SIZE];
             sprintf(fullPath, "%s/%s", pPath, pFile->d_name);
             //GH_LOG_TEXT(fullPath);
             //限定文件头、文件尾
             if (  strstr(pFile->d_name, VALID_FILE_HEAD) != NULL
                && strstr(pFile->d_name, VALID_FILE_TAIL) != NULL)
             {
                 gh_ai_channel_process_ghinfer (view, (const char*)fullPath, validCount);
                 validCount ++;
             }
        }
        else if (pFile->d_type == DT_LNK)
        {
             ///link file
             printf("d_name:%s/%s\n", pPath, pFile->d_name);
        }
        else if (pFile->d_type == DT_DIR)
        {
             ///dir
             char subDir[MAX_BUFFER_SIZE];
             memset(subDir, 0, MAX_BUFFER_SIZE);
             sprintf(subDir, "%s/%s", pPath, pFile->d_name);
             //process_directory(view, subDir);
        }
    }

    closedir(pDir);

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

柳鲲鹏

能给阁下一点帮助,非常荣幸

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值