geting full path of files and folders (boost::filesystem)
Hello all
im trying to get full path of files and folders.
im using boost::filesystem to loop throw folders
with this :
for( fs::recursive_directory_iterator it(dir_path); it != fs::recursive_directory_iterator(); ++it)
{
string ss = it->leaf();
}
how can i get the full path of ss?
thanks
Re: geting full path of files and folders (boost::filesystem)
Re: geting full path of files and folders (boost::filesystem)
yeah i know the site and i try to find the answer there .
but i couldn't.
Re: geting full path of files and folders (boost::filesystem)
You're kidding?
The very second or third example on that page does exactly what you want.