| 1381 | } |
| 1382 | |
| 1383 | SC::StringSpan SC::FileSystem::Operations::getExecutablePath(StringPath& executablePath) |
| 1384 | { |
| 1385 | if (not FileSystemWindowsDetail::WindowsPath::getExecutablePath(executablePath)) |
| 1386 | { |
| 1387 | (void)executablePath.resize(0); |
| 1388 | return {}; |
| 1389 | } |
| 1390 | return executablePath.view(); |
| 1391 | } |
| 1392 | |
| 1393 | SC::StringSpan SC::FileSystem::Operations::getCurrentWorkingDirectory(StringPath& currentWorkingDirectory) |
| 1394 | { |
nothing calls this directly
no test coverage detected