Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.statvfs()
Python中的方法用于获取有关包含给定路径的已挂载文件系统的信息。为了获取文件系统信息,该方法在给定路径上执行statvfs()系统调用。
注意: os.statvfs()
该方法仅在Unix平台上可用。
用法: os.statvfs(path)
参数:
path:一个path-like对象,该对象需要文件系统信息。
返回类型:此方法返回“ os.statvfs_result”类的对象,该对象的属性表示有关包含给定路径的文件系统的信息。
返回的os.statvfs_result对象具有以下属性:
- f_bsize:代表文件系统块大小
- f_frsize:代表片段大小
- f_blocks它以f_frsize单位表示fs的大小
- f_bfree:表示空闲块数
- f_bavail:代表无特权用户的免费块数
- f_files:代表inode的数量
- f_ffree:表示空闲索引节点的数量
- f_favail:代表无特权用户的免费索引节点数
- f_fsid:代表档案系统ID
- f_flag:代表挂载标志
- f_namemax:代表最大文件名长度
码:使用os.statvfs()方法来获取有关包含给定路径的文件系统的信息。
# Python program to explain os.statvfs() method
# importing os module
import os
# File path
path = "/home / ihritik / Desktop / file.txt"
# Get the information about the
# filesystem containing the
# given path using os.statvfs() method
info = os.statvfs(path)
# Print the information
# about the file system
print(info)
# Print the file system block size
print("File system block size:", info.f_bsize)
# Print the the number of free blocks
# in the file system
print("Number of free blocks:", info.f_bfree)
输出:
os.statvfs_result(f_bsize=4096, f_frsize=4096, f_blocks=59798433, f_bfree=56521834, f_bavail=53466807, f_files=15261696, f_ffree=14933520, f_favail=14933520, f_flag=4096, f_namemax=255) File system block size:4096 Number of free blocks:56517297
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.get_inheritable()用法及代码示例
- Python os.getloadavg()用法及代码示例
- Python os.cpu_count()用法及代码示例
- Python os.remove()用法及代码示例
- Python os.set_inheritable()用法及代码示例
- Python os.mkdir()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python os.system()用法及代码示例
- Python os.pread()用法及代码示例
- Python os.makedirs()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.statvfs() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。