| 114 | } |
| 115 | |
| 116 | static void GetFileNameWithoutExtension(const String& filePath, String& outFileName) |
| 117 | { |
| 118 | outFileName += GetFileName(filePath); |
| 119 | int dot = (int)outFileName.LastIndexOf('.'); |
| 120 | if (dot != -1) |
| 121 | outFileName.RemoveToEnd(dot); |
| 122 | } |
| 123 | |
| 124 | static void GetExtension(const String& filePath, String& ext) |
| 125 | { |
nothing calls this directly
no test coverage detected