summaryrefslogtreecommitdiff
path: root/libs/pbd/file_utils.cc
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/file_utils.cc
parentfcabd5d8ee172e9d27423864448902ad99634ac5 (diff)
Add PBD::get_suffix() for ripping file suffixes from paths
Diffstat (limited to 'libs/pbd/file_utils.cc')
-rw-r--r--libs/pbd/file_utils.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/pbd/file_utils.cc b/libs/pbd/file_utils.cc
index 311d22f9e0..0877ceacbc 100644
--- a/libs/pbd/file_utils.cc
+++ b/libs/pbd/file_utils.cc
@@ -336,6 +336,16 @@ get_absolute_path (const std::string & p)
return Glib::build_filename (Glib::get_current_dir(), p);
}
+std::string
+get_suffix (const std::string & p)
+{
+ string::size_type period = p.find_last_of ('.');
+ if (period == string::npos || period == p.length() - 1) {
+ return string();
+ }
+ return p.substr (period+1);
+}
+
bool
equivalent_paths (const std::string& a, const std::string& b)
{