diff --git a/BaseLib/FileTools.cpp b/BaseLib/FileTools.cpp index 2786933eac010b4de5e8cf92a6b4ea18cf4bdfe9..b37dc9603de412e6471ab920f5b799afc6778fa4 100644 --- a/BaseLib/FileTools.cpp +++ b/BaseLib/FileTools.cpp @@ -59,6 +59,11 @@ void truncateFile( std::string const& filename) ofs.close(); } +size_t findLastPathSeparator(std::string const& path) +{ + return path.find_last_of("/\\"); +} + std::string getFileNameFromPath(const std::string &str, bool with_extension) { std::string::size_type beg1 = str.find_last_of('/'); diff --git a/BaseLib/FileTools.h b/BaseLib/FileTools.h index 6cfb4f8e4ac6d7f47359b779176134f75a25662c..970146c5e69bf10f7ecde90e13cabb12d877c7c7 100644 --- a/BaseLib/FileTools.h +++ b/BaseLib/FileTools.h @@ -21,6 +21,13 @@ namespace BaseLib { +/** Finds the position of last file path separator. + * Checks for unix or windows file path separators in given path and returns the + * position of the last one or std::string::npos if no file path separator was + * found. + */ +size_t findLastPathSeparator(std::string const& path); + /** * \brief Returns true if given file exists. From http://www.techbytes.ca/techbyte103.html *