0

我正在运行一个包含多个子目录的目录。我正在使用 recursive_directory_iterator。我有目录 asr->collections->(多个目录和几个文本文件)

#include <iostream>
#include <filesystem>
#include <conio.h>

using namespace std::tr2::sys;

int main () {
std::string path_;
std::cout << " Enter the path ";
std::cin >> path_;

auto dir_path = path(path_);

for (auto it = directory_iterator(dir_path); it != directory_iterator(); ++it)
{
    const auto& file = it->path();
    std::cout << " path : " << file << std::endl;

    if (is_directory (status(it->path()))) 
        std::cout << " It is a directory. " << std::endl;
    else 
        std::cout << " It is not a directory. " << std::endl;
}
_getch();
return 0;
}

我知道我之前已经发布了这个。这是一个愚蠢的错误,我改变了它。但它仍然是错误的。我遇到的问题是 is-directory 对所有内容都返回 false。我是不是用错了。我已经链接了下面的 MSDN URL。

我安装了 boost 并运行了代码。有效 !升压源

#include <iostream>
#include <boost\filesystem.hpp>
#include <conio.h>

using namespace boost::filesystem;

int main () {
std::string path_;
std::cout << " Enter the path ";
std::cin >> path_;

auto dir_path = path(path_);

for (auto it = directory_iterator(dir_path); it != directory_iterator(); ++it)
{
    const auto& file = it->path();
    std::cout << " path : " << file << std::endl;

    if (is_directory (status(it->path()))) 
        std::cout << " It is a directory. " << std::endl;
    else 
        std::cout << " It is not a directory. " << std::endl;
}
_getch();
return 0;
}

http://msdn.microsoft.com/en-us/library/hh874754.aspx

另外,我可以使用 boost 文件系统文档作为教程,因为没有关于什么是什么以及如何使用它的好的文档。

4

2 回答 2

2
if (is_directory (status(dir_path)) )

是的,你用错了。尝试测试文件,而不是 dir_path。您已经知道 dir_path 是一个目录。

于 2012-12-14T12:48:55.183 回答
1

好的,在我使用第一次重大更新更新 Visual Studio 后,问题已得到解决。

于 2012-12-16T06:01:02.297 回答