Add globing function to find file in folder with a given pattern
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));