33void Glob::glob(
const Poco::Path &pathPattern, std::set<std::string> &files,
int options) {
43 Poco::Glob::glob(Poco::Path(pathPattern.toString()), files, Poco::Glob::GLOB_CASELESS);
45 Poco::Glob::glob(Poco::Path(pathPattern.toString()), files, options);
static void glob(const Poco::Path &pathPattern, std::set< std::string > &files, int options=0)
Creates a set of files that match the given pathPattern.