Package version:

The mode permissions of the file or directory.

interface NfsFileMode {
    effectiveGroupIdentity: boolean;
    effectiveUserIdentity: boolean;
    group: PosixRolePermissions;
    other: PosixRolePermissions;
    owner: PosixRolePermissions;
    stickyBit: boolean;
}

Properties

effectiveGroupIdentity: boolean

Set effective group ID (setgid) on the file or directory.

effectiveUserIdentity: boolean

Set effective user ID (setuid) on the file or directory.

Permissions the group has over the file or directory.

Permissions other have over the file or directory.

Permissions the owner has over the file or directory.

stickyBit: boolean

The sticky bit may be set on directories. The files in that directory may only be renamed or deleted by the file's owner, the directory's owner, or the root user.