| 668 | } |
| 669 | |
| 670 | SC::Result SC::FileSystem::chmod(StringSpan path, uint32_t mode) |
| 671 | { |
| 672 | StringSpan encodedPath; |
| 673 | SC_TRY(convert(path, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 674 | return FileSystem::Operations::chmod(encodedPath, mode); |
| 675 | } |
| 676 | |
| 677 | SC::Result SC::FileSystem::chown(StringSpan path, uint32_t uid, uint32_t gid) |
| 678 | { |