Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6090105
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:10:33+00:00 2026-05-23T12:10:33+00:00

So I wrote a small program to try out Boost Filesystem. My program will

  • 0

So I wrote a small program to try out Boost Filesystem. My program will write how many files there is in the current path and then the file names.
Here’s my program:

#include <iostream>
#include <boost/filesystem.hpp>

using namespace boost::filesystem;

int main(){
    directory_iterator start = directory_iterator(current_path());
    directory_iterator di = start;
    int count;
    for (count = 0; di != directory_iterator(); ++di, ++count);
    std::cout << std::endl << "total number of files: " << count << std::endl;
    di = start;
    for (; di != directory_iterator(); ++di){
        std::cout << *di << std::endl;
    }
    return 0;
}

files existing are program.exe, .ilk and .pdb
However I get the following output (whole path left out for brevity):

$ program.exe
total number of files: 3
[..]/program.pdb
Assertion failed: m_imp->m_handle != 0 && “internal program error”, file c:\program files\boost\boost_1_44\boost\filesystem\v2\operations.hpp, line 1001

If I do a new directory_iterator instead it works fine:

di = start;
// .. becomes ..
di = directory_iterator(current_path());

I noticed a similar question related to directory_iterators but I have no idea what they are referring to or if it’s the same issue.

Question is:
Why can’t I save a startiterator and then use that to rewind my iterator?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:10:33+00:00Added an answer on May 23, 2026 at 12:10 pm

    It is the same issue.

    The directory iterator is a one pass iterator. You cannot save a copy and go a second pass. Each time you increment the iterator you get the next entry, but you cannot decrement it and you cannot go back and start over, not even if you have saved a copy of the starting point.

    If you want to traverse twice, you need to create another iterator (and risk that the number of files has changed).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write a small program in .NET 4.0 that will open a
I wrote a small program to check how many bytes char occupies in my
I want to write a small program that should print something like testing CPU...
I need to write a small program that can detect that it has been
I would like to write a small program in C# which goes through my
As the title says, I need to write a small program to read data
I wanted to write a small Rapid Serial Visual Presentation (RSVP) program for my
Here's a small test program I wrote: #include <iostream> using namespace std; class A
I am trying to write a small program which has to store and retrieve
I wrote this small program today and I was blown away by the results.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.