FsAttributeBinding import { FsAttributeBinding } from "destack:fs/binding"; Filesystem attribute binding family. export interface FsAttributeBinding { checkAccess(entry: &'a readonly FilesystemEntry, access: FileAccessMask): Result; setMode(entry: &'a readonly FilesystemEntry, mode: FileMode, isFollowing: boolean): Result; setOpenMode(file: FileHandle, mode: FileMode): Result; setOwner(entry: &'a readonly FilesystemEntry, owner: &'b readonly FileOwner, isFollowing: boolean): Result; setOpenOwner(file: FileHandle, owner: &'a readonly FileOwner): Result; setTimes(entry: &'a readonly FilesystemEntry, times: FileTimes, isFollowing: boolean): Result; setOpenTimes(file: FileHandle, times: FileTimes): Result; } language/library/src/fs/binding/attribute.ds:23:98 Members checkAccess(entry: &'a readonly FilesystemEntry, access: FileAccessMask): Result Check access to a filesystem entry. setMode(entry: &'a readonly FilesystemEntry, mode: FileMode, isFollowing: boolean): Result Set the permission mode for an entry. setOpenMode(file: FileHandle, mode: FileMode): Result Set the permission mode for an open file. setOwner(entry: &'a readonly FilesystemEntry, owner: &'b readonly FileOwner, isFollowing: boolean): Result Set the owner for an entry. setOpenOwner(file: FileHandle, owner: &'a readonly FileOwner): Result Set the owner for an open file. setTimes(entry: &'a readonly FilesystemEntry, times: FileTimes, isFollowing: boolean): Result Set access and modification times for an entry. setOpenTimes(file: FileHandle, times: FileTimes): Result Set access and modification times for an open file.