summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/file_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pbd/file_utils.h')
-rw-r--r--libs/pbd/pbd/file_utils.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/libs/pbd/pbd/file_utils.h b/libs/pbd/pbd/file_utils.h
index 3ced02f2aa..588e48217a 100644
--- a/libs/pbd/pbd/file_utils.h
+++ b/libs/pbd/pbd/file_utils.h
@@ -72,6 +72,24 @@ find_files_matching_pattern (std::vector<std::string>& result,
const Glib::PatternSpec& pattern);
/**
+ * Takes a Searchpath and returns all the files contained in the
+ * directory paths that match a particular pattern.
+ *
+ * This is a convenience method to avoid explicitly declaring
+ * temporary variables such as:
+ * find_files_matching_pattern (result, paths, string("*.ext"))
+ *
+ * @param result A vector in which to place the resulting matches.
+ * @param paths A Searchpath
+ * @param pattern A string representing the Glib::PatternSpec used
+ * to match the files.
+ */
+LIBPBD_API void
+find_files_matching_pattern (std::vector<std::string>& result,
+ const Searchpath& paths,
+ const std::string& pattern);
+
+/**
* Takes a directory path and returns all the files in the directory
* matching a particular pattern.
*