| 48 | } |
| 49 | |
| 50 | std::filesystem::path filepath_without_filename( |
| 51 | const std::filesystem::path& path ) |
| 52 | { |
| 53 | auto filepath = path; |
| 54 | return filepath.remove_filename(); |
| 55 | } |
| 56 | |
| 57 | std::string_view extension_from_filename( std::string_view filename ) |
| 58 | { |
no outgoing calls