PyXR

c:\python24\lib \ statvfs.py



0001 """Constants for interpreting the results of os.statvfs() and os.fstatvfs()."""
0002 
0003 # Indices for statvfs struct members in the tuple returned by
0004 # os.statvfs() and os.fstatvfs().
0005 
0006 F_BSIZE   = 0           # Preferred file system block size
0007 F_FRSIZE  = 1           # Fundamental file system block size
0008 F_BLOCKS  = 2           # Total number of file system blocks (FRSIZE)
0009 F_BFREE   = 3           # Total number of free blocks
0010 F_BAVAIL  = 4           # Free blocks available to non-superuser
0011 F_FILES   = 5           # Total number of file nodes
0012 F_FFREE   = 6           # Total number of free file nodes
0013 F_FAVAIL  = 7           # Free nodes available to non-superuser
0014 F_FLAG    = 8           # Flags (see your local statvfs man page)
0015 F_NAMEMAX = 9           # Maximum file name length
0016 

Generated by PyXR 0.9.4
SourceForge.net Logo