| 682 | } |
| 683 | |
| 684 | SC::Result SC::FileSystem::lchown(StringSpan path, uint32_t uid, uint32_t gid) |
| 685 | { |
| 686 | StringSpan encodedPath; |
| 687 | SC_TRY(convert(path, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 688 | return FileSystem::Operations::lchown(encodedPath, uid, gid); |
| 689 | } |
| 690 | |
| 691 | SC::Result SC::FileSystem::lchmod(StringSpan path, uint32_t mode) |
| 692 | { |