1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/components/misc/pathhelpers.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
C++
Raw Normal View History

#ifndef OPENMW_COMPONENTS_MISC_PATHHELPERS_H
#define OPENMW_COMPONENTS_MISC_PATHHELPERS_H
#include <string_view>
namespace Misc
{
inline constexpr std::size_t findExtension(std::string_view file) noexcept
{
return file.find_last_of('.');
}
inline constexpr std::string_view getFileExtension(std::string_view file) noexcept
{
if (auto extPos = findExtension(file); extPos != std::string_view::npos)
{
file.remove_prefix(extPos + 1);
return file;
}
return {};
}
2022-07-17 13:54:06 +00:00
inline constexpr std::string_view getFileName(std::string_view path) noexcept
2022-07-17 13:54:06 +00:00
{
if (auto namePos = path.find_last_of("/\\"); namePos != std::string_view::npos)
2022-07-17 13:54:06 +00:00
{
path.remove_prefix(namePos + 1);
}
return path;
}
inline constexpr std::string_view stemFile(std::string_view path) noexcept
2022-07-17 13:54:06 +00:00
{
path = getFileName(path);
if (auto extPos = path.find_last_of('.'); extPos != std::string_view::npos)
2022-07-17 13:54:06 +00:00
{
path.remove_suffix(path.size() - extPos);
}
return path;
}
}
#endif