如何使用Python检查磁盘中有多少可用空间?

时间:2018-10-10 11:44:43

标签: python

我需要一个脚本,该脚本可以告诉我C:\磁盘上有多少可用空间。最好的方法是什么?我正在使用Python 3.6。预先谢谢你:)

1 个答案:

答案 0 :(得分:1)

您可以在python中使用os库来执行Shell命令。对于Windows,检查目录使用情况的命令为fsutil volume diskfree c:,因此您可以执行以下操作:

import os
command = "fsutil volume diskfree c:"
os.system(command)

希望这行得通!输出应类似于:

Total # of free bytes        : 145709916160
Total # of bytes             : 254930841600
Total # of avail free bytes  : 145709916160