| 689 | } |
| 690 | |
| 691 | SC::Result SC::FileSystem::lchmod(StringSpan path, uint32_t mode) |
| 692 | { |
| 693 | StringSpan encodedPath; |
| 694 | SC_TRY(convert(path, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 695 | return FileSystem::Operations::lchmod(encodedPath, mode); |
| 696 | } |
| 697 | |
| 698 | SC::Result SC::FileSystem::setLastModifiedTime(StringSpan file, TimeMs time) |
| 699 | { |