我想在我的项目中使用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)您将在路径上找到extension()
方法(https://en.cppreference.com/w/cpp/filesystem/path/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++20中,只需使用std::string::ends_with
成员函数即可检查path().string()
是否以.txt
结束
#include <filesystem>
#include <iostream>
int main() {
for(auto& de : std::filesystem::directory_iterator(".")) {
if(de.is_regular_file() && de.path().string().ends_with(".txt")) {
std::cout << de << 'n'; // or `de.path().string()
}
}
}