blob: f572422e8a5b506c8800031a8b57c855ac80a96e [file] [log] [blame]
Guido van Rossume7b146f2000-02-04 15:28:42 +00001"""Constants for interpreting the results of os.statvfs() and os.fstatvfs()."""
Brett Cannonfa40bbf2008-05-16 00:50:02 +00002from warnings import warnpy3k
3warnpy3k("the statvfs module has been removed in Python 3.0", stacklevel=2)
4del warnpy3k
Guido van Rossum2386d731999-01-06 18:54:57 +00005
Guido van Rossum0bdbe6c1999-01-10 06:09:13 +00006# Indices for statvfs struct members in the tuple returned by
7# os.statvfs() and os.fstatvfs().
Guido van Rossum2386d731999-01-06 18:54:57 +00008
Tim Peters495ad3c2001-01-15 01:36:40 +00009F_BSIZE = 0 # Preferred file system block size
10F_FRSIZE = 1 # Fundamental file system block size
11F_BLOCKS = 2 # Total number of file system blocks (FRSIZE)
12F_BFREE = 3 # Total number of free blocks
13F_BAVAIL = 4 # Free blocks available to non-superuser
14F_FILES = 5 # Total number of file nodes
15F_FFREE = 6 # Total number of free file nodes
16F_FAVAIL = 7 # Free nodes available to non-superuser
17F_FLAG = 8 # Flags (see your local statvfs man page)
18F_NAMEMAX = 9 # Maximum file name length