mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 10:26:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
| 
 | |
| :mod:`statvfs` --- Constants used with :func:`os.statvfs`
 | |
| =========================================================
 | |
| 
 | |
| .. module:: statvfs
 | |
|    :synopsis: Constants for interpreting the result of os.statvfs().
 | |
| .. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
 | |
| 
 | |
| 
 | |
| .. % LaTeX'ed from comments in module
 | |
| 
 | |
| 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 :cfunc:`statvfs` man page.
 | |
| 
 | |
| 
 | |
| .. data:: F_NAMEMAX
 | |
| 
 | |
|    Maximum file name length.
 | |
| 
 | 
