epee: string_tools: keep full path in cut_off_extension

This commit is contained in:
tobtoht 2024-08-14 19:45:55 +02:00
parent c7d4bf491e
commit 7cb69fa6bc
No known key found for this signature in database
GPG key ID: E45B10DD027D2472
2 changed files with 8 additions and 1 deletions

View file

@ -212,7 +212,7 @@ namespace string_tools
//----------------------------------------------------------------------------
std::string cut_off_extension(const std::string& str)
{
return boost::filesystem::path(str).stem().string();
return boost::filesystem::path(str).replace_extension("").string();
}
#ifdef _WIN32