Returns the name of the file given the path, minus the extension
| 72 | |
| 73 | // Returns the name of the file given the path, minus the extension |
| 74 | std::wstring GetFileNameWithoutExtension(const wchar* filePath) |
| 75 | { |
| 76 | std::wstring fileName = GetFileName(filePath); |
| 77 | return GetFilePathWithoutExtension(fileName.c_str()); |
| 78 | } |
| 79 | |
| 80 | // Returns the given file path, minus the extension |
| 81 | std::wstring GetFilePathWithoutExtension(const wchar* filePath_) |
nothing calls this directly
no test coverage detected