Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-llfuse /
html /
_sources /
Delete
Unzip
Name
Size
Permission
Date
Action
about.rst.txt
80
B
-rw-r--r--
2020-10-04 12:03
changes.rst.txt
28
B
-rw-r--r--
2020-10-04 12:03
data.rst.txt
2.86
KB
-rw-r--r--
2020-10-04 12:03
example.rst.txt
816
B
-rw-r--r--
2020-10-04 12:03
fuse_api.rst.txt
327
B
-rw-r--r--
2020-10-04 12:03
general.rst.txt
3.15
KB
-rw-r--r--
2020-10-04 12:03
gotchas.rst.txt
868
B
-rw-r--r--
2020-10-04 12:03
index.rst.txt
409
B
-rw-r--r--
2020-10-04 12:03
install.rst.txt
2.75
KB
-rw-r--r--
2020-10-04 14:42
lock.rst.txt
2
KB
-rw-r--r--
2020-10-04 12:03
operations.rst.txt
198
B
-rw-r--r--
2020-10-04 12:03
util.rst.txt
381
B
-rw-r--r--
2020-10-04 12:03
Save
Rename
================= Data Structures ================= .. currentmodule:: llfuse .. py:data:: ENOATTR This errorcode is unfortunately missing in the `errno` module, so it is provided by Python-LLFUSE instead. .. py:data:: ROOT_INODE The inode of the root directory, i.e. the mount point of the file system. .. py:data:: default_options This is a recommended set of options that should be passed to `llfuse.init` to get reasonable behavior and performance. Python-LLFUSE is compatible with any other combination of options as well, but you should only deviate from the defaults with good reason. (The :samp:`fsname=<foo>` option is guaranteed never to be included in the default options, so you can always safely add it to the set). .. versionadded:: 0.42 .. autoexception:: FUSEError .. autoclass:: RequestContext .. attribute:: pid .. attribute:: uid .. attribute:: gid .. attribute:: umask .. autoclass:: StatvfsData .. attribute:: f_bsize .. attribute:: f_frsize .. attribute:: f_blocks .. attribute:: f_bfree .. attribute:: f_bavail .. attribute:: f_files .. attribute:: f_ffree .. attribute:: f_favail .. attribute:: f_namemax .. autoclass:: EntryAttributes .. autoattribute:: st_ino .. autoattribute:: generation .. autoattribute:: entry_timeout .. autoattribute:: attr_timeout .. autoattribute:: st_mode .. autoattribute:: st_nlink .. autoattribute:: st_uid .. autoattribute:: st_gid .. autoattribute:: st_rdev .. autoattribute:: st_size .. autoattribute:: st_blksize .. autoattribute:: st_blocks .. autoattribute:: st_atime_ns .. autoattribute:: st_ctime_ns .. autoattribute:: st_mtime_ns .. autoclass:: SetattrFields .. attribute:: update_atime If this attribute is true, it signals the `Operations.setattr` method that the `~EntryAttributes.st_atime_ns` field contains an updated value. .. attribute:: update_mtime If this attribute is true, it signals the `Operations.setattr` method that the `~EntryAttributes.st_mtime_ns` field contains an updated value. .. attribute:: update_mode If this attribute is true, it signals the `Operations.setattr` method that the `~EntryAttributes.st_mode` field contains an updated value. .. attribute:: update_uid If this attribute is true, it signals the `Operations.setattr` method that the `~EntryAttributes.st_uid` field contains an updated value. .. attribute:: update_gid If this attribute is true, it signals the `Operations.setattr` method that the `~EntryAttributes.st_gid` field contains an updated value. .. attribute:: update_size If this attribute is true, it signals the `Operations.setattr` method that the `~EntryAttributes.st_size` field contains an updated value.