I want to iterate over all files in a directory matching something like "somefiles*.txt". Does boost::filesystem have something built in to do that, or do I need a regex or something against each leaf()?
|
feedback
|
|
boost::filesystem does not have wildcard search, you have to filter files yourself. This is a code sample extracting the content of a directory with a boost::filesystem's directory_iterator and filtering it with boost::regex
(If you are looking for a ready-to-use class with builtin directory filtering, have a look at Qt's QDir.) | |||||
feedback
|
|
I believe the directory_iterators will only provide all files in a directory. It up to you to filter them as necessary. | |||
|
feedback
|