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