summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/file_utils.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-07-08 12:24:56 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-07-08 12:24:56 -0400
commit66684c6690d43c8f3277e1b07e1d86b372cd5f3a (patch)
tree51cce43abe3ef49771d525852fe2451d758fdddc /libs/pbd/pbd/file_utils.h
parentfcabd5d8ee172e9d27423864448902ad99634ac5 (diff)
Add PBD::get_suffix() for ripping file suffixes from paths
Diffstat (limited to 'libs/pbd/pbd/file_utils.h')
-rw-r--r--libs/pbd/pbd/file_utils.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libs/pbd/pbd/file_utils.h b/libs/pbd/pbd/file_utils.h
index 9ef5374a0a..cb0aa38065 100644
--- a/libs/pbd/pbd/file_utils.h
+++ b/libs/pbd/pbd/file_utils.h
@@ -182,6 +182,13 @@ LIBPBD_API void copy_files(const std::string & from_path, const std::string & to
LIBPBD_API std::string get_absolute_path (const std::string &);
/**
+ * Take a path/filename and return the suffix (characters beyond the last '.'
+ * @return A string containing the suffix, which will be empty
+ * if there are no '.' characters in the path/filename.
+ */
+LIBPBD_API std::string get_suffix (const std::string &);
+
+/**
* Find out if `needle' is a file or directory within the
* directory `haystack'.
* @return true if it is.