| 632 | } |
| 633 | |
| 634 | std::string_view Path::GetFileName(const std::string_view path) |
| 635 | { |
| 636 | const std::string_view::size_type pos = GetLastSeperatorPosition(path, true); |
| 637 | if (pos == std::string_view::npos) |
| 638 | return path; |
| 639 | |
| 640 | return path.substr(pos); |
| 641 | } |
| 642 | |
| 643 | std::string_view Path::GetFileTitle(const std::string_view path) |
| 644 | { |
no test coverage detected