| 368 | } |
| 369 | |
| 370 | StringView FilePath::getPath() const |
| 371 | { |
| 372 | StringView end = strRFind(m_filePath, '/'); |
| 373 | if (!end.isEmpty() ) |
| 374 | { |
| 375 | return StringView(m_filePath, end.getPtr()+1); |
| 376 | } |
| 377 | |
| 378 | return StringView(); |
| 379 | } |
| 380 | |
| 381 | StringView FilePath::getFileName() const |
| 382 | { |
nothing calls this directly
no test coverage detected