This errorcode is unfortunately missing in the errno module, so it is provided by llfuse instead.
The inode of the root directory, i.e. the mount point of the file system.
This exception may be raised by request handlers to indicate that the requested operation could not be carried out. The system call that resulted in the request (if any) will then fail with error code errno_.
Instances of this class are passed to some Operations methods to provide information about the caller of the syscall that initiated the request.
Instances of this class store information about the file system. The attributes correspond to the elements of the statvfs struct, see statvfs(2) for details.
Request handlers do not need to return objects that inherit from StatvfsData directly as long as they provide the required attributes.
Instances of this class store attributes of directory entries. Most of the attributes correspond to the elements of the stat C struct as returned by e.g. fstat and should be self-explanatory.
The access, modification and creation times may be specified either in nanoseconds (via the st_Xtime_ns attributes) or in seconds (via the st_Xtime attributes). When times are specified both in seconds and nanoseconds, the nanosecond representation takes precedence. If times are represented in seconds, floating point numbers may be used to achieve sub-second resolution. Nanosecond time stamps must be integers. Note that using integer nanoseconds is more accurately than using float seconds.
Request handlers do not need to return objects that inherit from EntryAttributes directly as long as they provide the required attributes.
The inode generation number.
Validity timeout (in seconds) for the name of the directory entry
Validity timeout (in seconds) for the attributes
Time of access time in seconds. Floating point numbers may be used.
Time of last status change in seconds. Floating point numbers may be used.
Time of last modification in seconds. Floating point numbers may be used.
Time of last access in nanoseconds. Only integer values may be used. If specified, takes precedence over st_atime.