| 111 | } |
| 112 | |
| 113 | String AssetPath::extension(String const& path) { |
| 114 | auto file = filename(path); |
| 115 | auto lastDot = file.findLast("."); |
| 116 | if (lastDot == NPos) |
| 117 | return ""; |
| 118 | |
| 119 | return file.substr(lastDot + 1); |
| 120 | } |
| 121 | |
| 122 | String AssetPath::relativeTo(String const& sourcePath, String const& givenPath) { |
| 123 | if (!givenPath.empty() && givenPath[0] == '/') |