| 660 | } |
| 661 | |
| 662 | SC::Result SC::FileSystem::readSymbolicLink(StringSpan linkFile, StringPath& destination) |
| 663 | { |
| 664 | StringSpan encodedPath; |
| 665 | SC_TRY(convert(linkFile, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 666 | SC_TRY(FileSystem::Operations::readSymbolicLink(encodedPath, destination)); |
| 667 | return Result(true); |
| 668 | } |
| 669 | |
| 670 | SC::Result SC::FileSystem::chmod(StringSpan path, uint32_t mode) |
| 671 | { |