forked from teamnwah/openmw-tes3coop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
585 B
C++
29 lines
585 B
C++
#include "search.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
using namespace boost::filesystem;
|
|
|
|
void FileFinder::find(const path & dir_path, ReturnPath &ret, bool recurse)
|
|
{
|
|
if ( !exists( dir_path ) )
|
|
{
|
|
cout << "Path " << dir_path << " not found\n";
|
|
return;
|
|
}
|
|
|
|
directory_iterator end_itr; // default construction yields past-the-end
|
|
for ( directory_iterator itr(dir_path);
|
|
itr != end_itr;
|
|
++itr )
|
|
{
|
|
if ( is_directory( *itr ) )
|
|
{
|
|
if(recurse) find(*itr, ret);
|
|
}
|
|
else
|
|
ret.add(*itr);
|
|
}
|
|
}
|