Python| shutil.disk_usage() 方法
Python中的Shutil 模块提供了许多对文件和文件集合进行高级操作的功能。它属于 Python 的标准实用程序模块。该模块有助于自动复制和删除文件和目录的过程。
shutil.disk_usage()
方法将关于给定路径的磁盘使用统计信息作为一个命名元组,其属性为total 、 used和free其中total表示内存总量, used表示已用内存, free表示空闲内存。
注意:所有内存值都以字节为单位。
Syntax: shutil.disk_usage(path)
Parameter:
path: A string representing the path.
Return Value: This method returns a named tuple with the attributes total, used and free which are the amount of total, used and free space, in bytes
示例 #1:
使用shutil.disk_usage()
方法了解 GeeksforGeeks 服务器的内存使用统计信息。
# Python program to explain shutil.disk_usage() method
# importing os module
import os
# importing shutil module
import shutil
# path
# As the path for GFG is root so '/' is used
path = '/'
# Using shutil.disk_usage() method
memory = shutil.disk_usage(path)
# Print result
print(memory)
输出:
usage(total=51976970240, used=27151167488, free=24809025536)
示例 #2:
使用shutil.disk_usage()
方法了解任何用户计算机的内存使用统计信息。
# Python program to explain shutil.disk_usage() method
# importing os module
import os
# importing shutil module
import shutil
# path
path = 'C:/Users/User_name/GeeksforGeeks'
# Using shutil.disk_usage() method
memory = shutil.disk_usage(path)
# Print result
print(memory)
输出:
usage(total=209190907904, used=92728918016, free=116461989888)
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。