diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-04-28 13:03:59 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-04-28 13:03:59 +0300 |
commit | 8c321554b1ea0c81efdea5e0921b6f391708d721 (patch) | |
tree | a11af29baca14cf8d145e1b17d06b4f6055bef4f /butl/filesystem | |
parent | 9175323db2ac6fabb15a5bebb0679c39150437bb (diff) |
Add follow_symlinks parameter to path_search()
Diffstat (limited to 'butl/filesystem')
-rw-r--r-- | butl/filesystem | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/butl/filesystem b/butl/filesystem index 4e0395c..0f0c71c 100644 --- a/butl/filesystem +++ b/butl/filesystem @@ -558,7 +558,8 @@ namespace butl const std::function<bool (path&&, const std::string& pattern, bool interm)>&, - const dir_path& start = dir_path ()); + const dir_path& start = dir_path (), + bool follow_symlinks = true); } #include <butl/filesystem.ixx> |