| 652 | } |
| 653 | |
| 654 | SC::Result SC::FileSystem::lstat(StringSpan file, FileStat& fileStat) |
| 655 | { |
| 656 | StringSpan encodedPath; |
| 657 | SC_TRY(convert(file, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 658 | SC_TRY(FileSystem::Operations::lstat(encodedPath, fileStat)); |
| 659 | return Result(true); |
| 660 | } |
| 661 | |
| 662 | SC::Result SC::FileSystem::readSymbolicLink(StringSpan linkFile, StringPath& destination) |
| 663 | { |