python3 判断磁盘存储使用情况


import shutil

total, used, free = shutil.disk_usage("\\")

print("Total: %d GB" % (total // (2**30)))

print("Used: %d GB" % (used // (2**30)))

print("Free: %d GB" % (free // (2**30)))

你可能感兴趣的:(python3 判断磁盘存储使用情况)