gpt4 book ai didi

c++ - 无法进入子目录

转载 作者:行者123 更新时间:2023-11-28 07:27:23 24 4
gpt4 key购买 nike

熟悉<filesystem> ,我写了一个遍历目录树的简单递归函数:

#include <filesystem>

namespace fs = std::tr2::sys;
const fs::directory_iterator fs_end;

void walk(fs::path root)
{
std::cout << "ENTERING " << root << '\n';
for (auto it = fs::directory_iterator(root); it != fs_end; ++it)
{
if (is_directory(it->status()))
{
walk(it->path());
}
else
{
std::cout << it->path() << " is not a directory\n";
}
}
std::cout << "LEAVING " << root << '\n';
}

int main()
{
walk("d:/a");
}

不幸的是,这只会访问在main 中指定的目录中的直接目录。 .不访问子目录。为了说明,我做了一个非常简单的目录结构:

abcd

程序的输出如下:

ENTERING d:/a
ENTERING b
LEAVING b
ENTERING c
LEAVING c
LEAVING d:/a

如您所见,d 未被访问。显然,for 循环在 c 中运行了零次。为什么?

最佳答案

从输出看来,it->path() 给你的是相对路径,而不是绝对路径。迭代时,您的当前目录 不会更改,因此尝试迭代路径为“b”或“c”的目录将不起作用,并且不会在该不存在的目录中找到任何子目录。在您的 for 循环中,尝试以下递归调用:

walk(root/it->path());

现在,当您的程序检查目录 c 时,它应该输出:

ENTERING d:/a/c 
ENTERING d:/a/c/d
etc...

关于c++ - 无法进入子目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18514912/

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