Python中的Shutil模块提供了许多对文件和文件集合进行高级操作的函数。它属于Python的标准实用程序模块。此模块有助于自动执行文件和目录的复制和删除过程。
shutil.disk_usage()
Python中的方法是获取有关给定路径的磁盘使用情况统计信息。此方法返回一个具有元属性total,used和free的命名元组。 total属性代表总空间量,used属性代表已使用空间量,free属性代表可用空间量,以字节为单位。
注意:在Windows上,给定的路径必须代表一个目录,但是在Unix系统上,它可以是文件或目录。
用法: shutil.disk_usage(path)
参数:
path:代表文件系统路径的path-like对象。 path-like对象是表示路径的字符串或字节对象。
返回类型:此方法返回一个命名的元组,其属性为total,used和free。
代码:使用shutil.disk_usage()方法
# Python program to explain shutil.disk_usage() method
# importing shutil module
import shutil
# Path
path = "/home/User/Documents"
# Get the disk usage statistics
# about the given path
stat = shutil.disk_usage(path)
# Print disk usage statistics
print("Disk usage statistics:")
print(stat)
输出:
Disk usage statistics: usage(total=244934381568, used=13350301696, free=219070689280)
参考: https://docs.python.org/3/library/shutil.html
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | shutil.disk_usage() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。