Server IP : 51.89.169.208 / Your IP : 216.73.216.178 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/proc/self/root/usr/share/doc/python2-docs/html/_sources/library/ |
Upload File : |
:mod:`statvfs` --- Constants used with :func:`os.statvfs` ========================================================= .. module:: statvfs :synopsis: Constants for interpreting the result of os.statvfs(). :deprecated: .. deprecated:: 2.6 The :mod:`statvfs` module has been removed in Python 3. .. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il> The :mod:`statvfs` module defines constants so interpreting the result if :func:`os.statvfs`, which returns a tuple, can be made without remembering "magic numbers." Each of the constants defined in this module is the *index* of the entry in the tuple returned by :func:`os.statvfs` that contains the specified information. .. data:: F_BSIZE Preferred file system block size. .. data:: F_FRSIZE Fundamental file system block size. .. data:: F_BLOCKS Total number of blocks in the filesystem. .. data:: F_BFREE Total number of free blocks. .. data:: F_BAVAIL Free blocks available to non-super user. .. data:: F_FILES Total number of file nodes. .. data:: F_FFREE Total number of free file nodes. .. data:: F_FAVAIL Free nodes available to non-super user. .. data:: F_FLAG Flags. System dependent: see :c:func:`statvfs` man page. .. data:: F_NAMEMAX Maximum file name length.