CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2006
    Posts
    230

    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

  2. #2
    Join Date
    May 2008
    Posts
    96

    Re: geting full path of files and folders (boost::filesystem)


  3. #3
    Join Date
    Aug 2006
    Posts
    230

    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.

  4. #4
    Join Date
    May 2008
    Posts
    96

    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
  •  





Click Here to Expand Forum to Full Width

Featured