| 644 | SC::Result SC::FileSystem::getFileStat(StringSpan file, FileStat& fileStat) { return stat(file, fileStat); } |
| 645 | |
| 646 | SC::Result SC::FileSystem::stat(StringSpan file, FileStat& fileStat) |
| 647 | { |
| 648 | StringSpan encodedPath; |
| 649 | SC_TRY(convert(file, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 650 | SC_TRY(FileSystem::Operations::stat(encodedPath, fileStat)); |
| 651 | return Result(true); |
| 652 | } |
| 653 | |
| 654 | SC::Result SC::FileSystem::lstat(StringSpan file, FileStat& fileStat) |
| 655 | { |
nothing calls this directly
no test coverage detected