Why when I try to iterate all directories and subdirectories of a partition using recursive_directory_iterator() from Boost, when it reaches the end, Visual Studio 2010 gives me an Abort error ?
path Path = "e:\\";
for(recursive_directory_iterator it(Path); it != recursive_directory_iterator(); ++it)
{
cout << *it << endl;
}