From cf7d5dbc2dabb2e0207da44ca92dccb30e8fabdb Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 3 Mar 2015 16:41:44 +0100 Subject: [PATCH] recursive regexp file search. --- libs/pbd/file_utils.cc | 5 +++-- libs/pbd/pbd/file_utils.h | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/libs/pbd/file_utils.cc b/libs/pbd/file_utils.cc index 9523fdd6bd..a15cd04cd4 100644 --- a/libs/pbd/file_utils.cc +++ b/libs/pbd/file_utils.cc @@ -225,7 +225,8 @@ regexp_filter (const string& str, void *arg) void find_files_matching_regex (vector& result, const Searchpath& paths, - const std::string& regexp) + const std::string& regexp, + bool recurse) { int err; char msg[256]; @@ -250,7 +251,7 @@ find_files_matching_regex (vector& result, find_files_matching_filter (result, paths, regexp_filter, &compiled_pattern, - true, true, false); + true, true, recurse); regfree (&compiled_pattern); } diff --git a/libs/pbd/pbd/file_utils.h b/libs/pbd/pbd/file_utils.h index 7a9cb68318..bd22f341d8 100644 --- a/libs/pbd/pbd/file_utils.h +++ b/libs/pbd/pbd/file_utils.h @@ -117,7 +117,8 @@ find_file (const Searchpath& search_path, LIBPBD_API void find_files_matching_regex (std::vector& results, const Searchpath& paths, - const std::string& regexp); + const std::string& regexp, + bool recurse = false); /** * Find paths in a Searchpath that match a supplied filter(functor)