Skip to content

Add globing function to find file in folder with a given pattern

Samuel Debionne requested to merge add-utils-glob into develop

Given a folder and a pattern with wildcards, fill the a vector of path that matches the pattern. A quick example:

std::vector<boost::filesystem::path> all_matching_files;
lima::glob(folder, pattern, std::back_inserter(all_matching_files));

Merge request reports