使用python跨平台卷剩余空间
- 2024-10-24 08:50:00
- admin 原创
- 71
问题描述:
我需要一种方法来使用 Linux、Windows 和 OS X 上的 python 确定磁盘卷上剩余的空间。我目前正在解析各种系统调用(df、dir)的输出来实现这一点——有没有更好的方法?
解决方案 1:
import ctypes
import os
import platform
import sys
def get_free_space_mb(dirname):
"""Return folder/drive free space (in megabytes)."""
if platform.system() == 'Windows':
free_bytes = ctypes.c_ulonglong(0)
ctypes.windll.kernel32.GetDiskFreeSpaceExW(ctypes.c_wchar_p(dirname), None, None, ctypes.pointer(free_bytes))
return free_bytes.value / 1024 / 1024
else:
st = os.statvfs(dirname)
return st.f_bavail * st.f_frsize / 1024 / 1024
请注意,您必须传递目录名称才能GetDiskFreeSpaceEx()
工作(statvfs()
适用于文件和目录)。您可以使用从文件中获取目录名称os.path.dirname()
。
os.statvfs()
另请参阅和的文档GetDiskFreeSpaceEx
。
解决方案 2:
使用安装psutilpip install psutil
。然后,您可以使用以下命令获取可用空间量(以字节为单位):
import psutil
print(psutil.disk_usage(".").free)
解决方案 3:
您可以在 Windows 上使用wmi模块,在 Unix 上使用 os.statvfs 模块
用于窗户
import wmi
c = wmi.WMI ()
for d in c.Win32_LogicalDisk():
print( d.Caption, d.FreeSpace, d.Size, d.DriveType)
适用于 unix 或 linux
from os import statvfs
statvfs(path)
解决方案 4:
如果你正在运行 python3:
使用shutil.disk_usage()
名称os.path.realpath('/')
正则化的作品:
from os import path
from shutil import disk_usage
print([i / 1000000 for i in disk_usage(path.realpath('/'))])
或者
total_bytes, used_bytes, free_bytes = disk_usage(path.realpath('D:\\Users\\phannypack'))
print(total_bytes / 1000000) # for Mb
print(used_bytes / 1000000)
print(free_bytes / 1000000)
以 MB 为单位提供总空间、已用空间和可用空间。
解决方案 5:
如果您不想添加另一个依赖项,您可以在 Windows 中使用 ctypes 直接调用 win32 函数调用。
import ctypes
free_bytes = ctypes.c_ulonglong(0)
ctypes.windll.kernel32.GetDiskFreeSpaceExW(ctypes.c_wchar_p(u'c:\\'), None, None, ctypes.pointer(free_bytes))
if free_bytes.value == 0:
print 'dont panic'
解决方案 6:
一种好的跨平台方式是使用 psutil:http://pythonhosted.org/psutil/#disks
(请注意,您需要 psutil 0.3.0 或更高版本)。
解决方案 7:
从 Python 3.3 开始,您可以使用Windows 和 UNIX 标准库中的shutil.disk_usage(“/”).free :)
解决方案 8:
您可以使用df作为跨平台方式。它是GNU 核心实用程序的一部分。这些是预期存在于每个操作系统上的核心实用程序。但是,默认情况下,它们不会安装在 Windows 上(此时,GetGnuWin32就派上用场了)。
df是一个命令行实用程序,因此需要一个包装器来编写脚本。例如:
from subprocess import PIPE, Popen
def free_volume(filename):
"""Find amount of disk space available to the current user (in bytes)
on the file system containing filename."""
stats = Popen(["df", "-Pk", filename], stdout=PIPE).communicate()[0]
return int(stats.splitlines()[1].split()[3]) * 1024
解决方案 9:
下面的代码在 Windows 上返回正确的值
import win32file
def get_free_space(dirname):
secsPerClus, bytesPerSec, nFreeClus, totClus = win32file.GetDiskFreeSpace(dirname)
return secsPerClus * bytesPerSec * nFreeClus
解决方案 10:
对于类 Unix 平台(包括 OS X), os.statvfs()函数是获取该信息的更好方法。Python 文档中说“可用性:Unix”,但值得检查它是否也适用于 Windows(即文档可能不是最新的)。
否则,您可以使用pywin32库直接调用GetDiskFreeSpaceEx函数。
解决方案 11:
我不知道有任何跨平台的方法来实现这一点,但也许对你来说一个好的解决方法是编写一个包装类来检查操作系统并为每个操作系统使用最佳方法。
对于 Windows, win32 扩展中有GetDiskFreeSpaceEx方法。
解决方案 12:
之前大多数答案都是正确的,我使用的是 Python 3.10 和shutil。我的用例仅限于 Windows 和 C 盘(但您也可以将其扩展到 Linux 和 Mac(此处是文档))
以下是 Windows 的示例:
import shutil
total, used, free = shutil.disk_usage("C:/")
print("Total: %d GiB" % (total // (2**30)))
print("Used: %d GiB" % (used // (2**30)))
print("Free: %d GiB" % (free // (2**30)))
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件