Returns the name of the file given the path, minus the extension
| 66 | |
| 67 | // Returns the name of the file given the path, minus the extension |
| 68 | std::wstring GetFileNameWithoutExtension(const wchar* filePath) |
| 69 | { |
| 70 | std::wstring fileName = GetFileName(filePath); |
| 71 | return GetFilePathWithoutExtension(fileName.c_str()); |
| 72 | } |
| 73 | |
| 74 | // Returns the given file path, minus the extension |
| 75 | std::wstring GetFilePathWithoutExtension(const wchar* filePath_) |
no test coverage detected