0
votes
How do you iterate through every file/directory recursively in standard C++
You don't. The c++ standard has no concept of directories. It is up to the implementation to turn a string into a file handle. The contents of that string and what it maps to is OS dependent. Keep …
