有没有人有这个问题?使用 recursive_directory_iterator 搜索分区时,到达末尾时会崩溃。
我在 Visual Studio 2008 中使用 boost 1.39 得到这个,但也在家里使用 MinGW 和 boost 1.46。我不认为我做错了什么:
#include "stdafx.h"
#include <iostream>
#include <boost/filesystem.hpp>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
boost::filesystem::path musicPaths("d:\\");
for(boost::filesystem::recursive_directory_iterator it(musicPaths); it != boost::filesystem::recursive_directory_iterator(); ++it)
{
string strToFind = ".mp3";
boost::filesystem::path dummypath = it->path().filename();
string str = dummypath.string();
if(str.find(strToFind) != -1)
{
cout << str << endl;
}
}
return 0;
}
编辑:
我看到它最后没有崩溃,但是当它到达系统卷信息时