我在互联网上搜索了获取目录中的文件列表,但大多数答案都需要升级库。所以我为那些不想添加任何第三方库的人提出这个问题。
那么如何获取目录中的文件列表?我们还可以决定我们要获取的文件的模式(如所有文件,仅txt文件,文件名中包含特定文本的文件,......)。另外决定是否在子文件夹中搜索。
编辑:我看到这个问题被降级了,也许是因为我没有具体说明这个问题是针对Win 32而不是一般的C ++(我刚才意识到,当我说C ++时,它是不必要的是Win API)。
无论如何,在这个问题中,我的意思是要求Win API。当然,一般的C ++是受欢迎的(因为它也可以用于Windows,甚至更好的是跨平台)。
答案 0 :(得分:1)
C ++ 17有一个std::filesystem::directory_iterator,可以用作
#include <string>
#include <iostream>
#include <filesystem>
namespace fis = std::filesystem;
int main()
{
std::string dir_path = "path_to_dir";
for (auto & i : fis::directory_iterator(dir_path))
std::cout << i << std::endl;
}
此外,std::filesystem::recursive_directory_iterator也可以迭代子目录。
可以使用dirent.h ,也可用于Windows:
DIR *dir;
struct dirent *s_dir;
if ((dir = opendir ("c:\\programs\\")) != NULL) {
/* print all the files and directories */
while ((s_dir = readdir (dir)) != NULL) {
printf ("%s\n", s_dir->d_name);
}
closedir (dir);
} else {
/* could not open directory */
perror ("");
return EXIT_FAILURE;
}
答案 1 :(得分:-1)
所以这是函数
void GetSubfolderInDirectory(std::vector<TCHAR*> *lstFileOut, const TCHAR* szPath)
{
HANDLE hFind;
WIN32_FIND_DATA findData;
TCHAR szCurrentDir[MAX_PATH];
_tcscpy_s(szCurrentDir, MAX_PATH, szPath);
TCHAR szPatternDir[MAX_PATH];
_tcscpy_s(szPatternDir, MAX_PATH, szCurrentDir);
_tcscat_s(szPatternDir, MAX_PATH, _T("/*"));
TCHAR* szFullPath;
bool bIsDirectory;
if ((hFind = FindFirstFile(szPatternDir, &findData)) == INVALID_HANDLE_VALUE)
{
return;
}
do {
bIsDirectory = (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
if (bIsDirectory)
{
if (findData.cFileName[0] == '.')
{
continue;
}
szFullPath = (_TCHAR*)malloc(_MAX_PATH * sizeof(_TCHAR));
_tcscpy_s(szFullPath, MAX_PATH, szCurrentDir);
_tcscat_s(szFullPath, MAX_PATH, _T("\\"));
_tcscat_s(szFullPath, MAX_PATH, findData.cFileName);
lstFileOut->push_back(szFullPath);
}
} while (FindNextFile(hFind, &findData));
FindClose(hFind);
}
void GetFilesInDirectory(std::vector<TCHAR*> *lstFileOut, const TCHAR* szPath,
const TCHAR* szPattern, bool bSearchSub)
{
HANDLE hFind;
WIN32_FIND_DATA findData;
TCHAR szCurrentDir[MAX_PATH];
_tcscpy_s(szCurrentDir, MAX_PATH, szPath);
TCHAR szPatternDir[MAX_PATH];
_tcscpy_s(szPatternDir, MAX_PATH, szCurrentDir);
_tcscat_s(szPatternDir, MAX_PATH, _T("/"));
_tcscat_s(szPatternDir, szPattern);
if ((hFind = FindFirstFile(szPatternDir, &findData)) == INVALID_HANDLE_VALUE)
return; /* No files found */
TCHAR* szFullPath;
bool bIsDirectory;
do {
szFullPath = (_TCHAR*)malloc(_MAX_PATH * sizeof(_TCHAR));
_tcscpy_s(szFullPath, MAX_PATH, szCurrentDir);
_tcscat_s(szFullPath, MAX_PATH, _T("\\"));
_tcscat_s(szFullPath, MAX_PATH, findData.cFileName);
bIsDirectory = (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
if (findData.cFileName[0] == '.')
{
free(szFullPath);
continue;
}
if (bIsDirectory)
{
continue;
}
else
{
lstFileOut->push_back(szFullPath);
}
} while (FindNextFile(hFind, &findData));
FindClose(hFind);
if (bSearchSub)
{
std::vector<TCHAR*> lstDir;
GetSubfolderInDirectory(&lstDir, szCurrentDir);
int nFolderCount = lstDir.size();
for (int i = 0; i < nFolderCount; i++)
{
GetFilesInDirectory(lstFileOut, lstDir[i], szPattern, bSearchSub);
}
}
}
以下是如何使用
TCHAR szCrtPath[MAX_PATH];
TCHAR szCrtPattern[MAXBYTE];
_tcscpy_s(szCrtPattern, _T("*.*"));
_tcscpy_s(szCrtPath, _MAX_PATH, _T("D:\\MyFolder"));
vector<TCHAR*> lstFile;
GetFilesInDirectory(&lstFile, szCrtPath, szCrtPattern, true);
关于模式的一些解释
*.* // Get all files
*.txt // Get txt file only
*sometext* // Get file with "sometext" in size file name
也许有更好的方法来获取目录中的所有子文件夹(函数GetSubfolderInDirectory)。