gpt4 book ai didi

c++ - 我不知道如何使用文件系统来查找 .txt 文件 c++

转载 作者:行者123 更新时间:2023-12-05 01:06:54 27 4
gpt4 key购买 nike

我想在我的项目中使用 std::filesystem,这将允许我在当前目录中显示 .txt 文件(我使用 Ubuntu,我不'不需要 Windows 功能,因为我已经在 StackOverflow 上看到过)。

这是我的 GitHub 存储库:

https://github.com/jaroslawroszyk/-how-many-pages-per-day

我有一个解决这个问题的方法:

void showFilesTxt()
{
DIR *d;
char *p1, *p2;
int ret;
struct dirent *dir;
d = opendir(".");
if (d)
{
while ((dir = readdir(d)) != NULL)
{
p1 = strtok(dir->d_name, ".");
p2 = strtok(NULL, ".");
if (p2 != NULL)
{
ret = strcmp(p2, "txt");
if (ret == 0)
{
std::cout << p1 << "\n";
}
}
}
closedir(d);
}
}

但是我这里输入的代码想用C++17,但是不知道怎么找到.txt文件,现在写了:

for (auto &fn : std::filesystem::directory_iterator("."))
if (std::filesystem::is_regular_file(fn))
{
std::cout << fn.path() << '\n';
}

最佳答案

如果您查看引用 (https://en.cppreference.com/w/cpp/filesystem/path),您会发现路径 (https://en.cppreference.com/w/cpp/filesystem/path/extension) 上的 extension() 方法会返回文件的扩展名。现在您只需要在路径的扩展名上使用 string() 函数并比较字符串。

类似

for (auto& p : std::filesystem::directory_iterator(".")) {
if (p.is_regular_file()) {
if (p.path().extension().string() == ".txt") {
std::cout << p << std::endl;
}
}
}

关于c++ - 我不知道如何使用文件系统来查找 .txt 文件 c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68276963/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com