📜  Python| os.statvfs() 方法

📅  最后修改于: 2022-05-13 01:54:35.737000             🧑  作者: Mango

Python| os.statvfs() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

Python中的os.statvfs()方法用于获取包含给定路径的已挂载文件系统的信息。为了获取文件系统信息,该方法在给定路径上执行statvfs()系统调用。

注意: os.statvfs()方法仅在 Unix 平台上可用。

代码:使用 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