| 41 | } |
| 42 | |
| 43 | std::filesystem::path filepath_without_extension( |
| 44 | const std::filesystem::path& path ) |
| 45 | { |
| 46 | auto filepath = path; |
| 47 | return filepath.replace_extension( "" ); |
| 48 | } |
| 49 | |
| 50 | std::filesystem::path filepath_without_filename( |
| 51 | const std::filesystem::path& path ) |