首頁 > 軟體

詳解C/C++如何獲取路徑下所有檔案及其子目錄的檔名

2023-03-15 06:02:11

一、功能描述

需要提取某個資料夾下所有檔案名字,當包含子目錄時,將子目錄及其路徑獲取到。

二、實現方式

使用C語言的opendir函數

  DIR* dp;
  struct dirent* dirp;
  if ((dp = opendir(sdir.c_str())) != NULL) {
      dirp = readdir(dp)
  }

通過readir讀取到的dirp中包含的d_type具有如下型別及其含義:

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
# define DT_WHT        DT_WHT
  };

參考官方檔案可知

DT_UNKNOWN ¶
The type is unknown. Only some filesystems have full support to return the type of the file, others might always return this value.
未知型別
DT_REG
A regular file. 常規檔案
DT_DIR
A directory. 目錄

DT_FIFO
A named pipe, or FIFO. See FIFO Special Files.

DT_SOCK
A local-domain socket. 通訊端檔案

DT_CHR
A character device. 字元裝置

DT_BLK
A block device. 塊裝置,比如掛載的硬碟之類

DT_LNK
A symbolic link. 連結檔案

三、程式碼實現

通過遞迴的方式,獲取該目錄及其子目錄下的所有檔案及其路徑名

#include <dirent.h>
#include <vector>
/**
 * @brief GetFiles: 獲取資料夾內的所有檔案名字
 * @param sdir
 * @param bsubdir: true 包含子目錄下的檔案
 * @return
 */
std::vector<std::string> GetFiles(const std::string& sdir = ".",
                                  bool bsubdir = true) {
  DIR* dp;
  struct dirent* dirp;
  std::vector<std::string> filenames;
  if ((dp = opendir(sdir.c_str())) != NULL) {
    while ((dirp = readdir(dp)) != NULL) {
      if (strcmp(".", dirp->d_name) == 0 || strcmp("..", dirp->d_name) == 0)
        continue;
      if (dirp->d_type != DT_DIR)
        filenames.push_back(sdir + "/" + dirp->d_name);
      if (bsubdir && dirp->d_type == DT_DIR) {
        std::vector<std::string> names = GetFiles(sdir + "/" + dirp->d_name);
        filenames.insert(filenames.begin(), names.begin(), names.end());
      }
    }
  }
  closedir(dp);
  return filenames;
}

到此這篇關於詳解C/C++如何獲取路徑下所有檔案及其子目錄的檔名的文章就介紹到這了,更多相關C++獲取路徑下檔案檔名內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com