|
-
May 18th, 2008, 01:36 PM
#1
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
-
May 18th, 2008, 04:24 PM
#2
Re: geting full path of files and folders (boost::filesystem)
-
May 19th, 2008, 12:28 AM
#3
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.
-
May 19th, 2008, 10:13 AM
#4
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|