使用python在卷上保留跨平台空间

时间:2008-09-09 11:36:39

标签: python windows linux macos diskspace

我需要一种方法来确定在Linux,Windows和OS X上使用python在磁盘卷上剩余的空间。我正在解析各种系统调用的输出(df,dir)来实现这一点 - 是否有更好的方法?

11 个答案:

答案 0 :(得分:71)

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的文档。

答案 1 :(得分:23)

使用pip install psutil安装psutil。然后,您可以使用以下命令获取可用空间量(

import psutil
print(psutil.disk_usage(".").free)

答案 2 :(得分:21)

您可以将wmi模块用于windows,将os.statvfs用于unix

for window

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)

答案 3 :(得分:6)

如果你不想添加另一个依赖项,你可以使用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'

答案 4 :(得分:5)

一种很好的跨平台方式是使用psutil:http://pythonhosted.org/psutil/#disks (请注意,您需要psutil 0.3.0或更高版本。)

答案 5 :(得分:5)

从Python 3.3中,您可以在Windows和UNIX上使用标准库中的shutil.disk_usage("/").free:)

答案 6 :(得分: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中的自由空间。

答案 7 :(得分:2)

os.statvfs()函数是获取类Unix平台(包括OS X)信息的更好方法。 Python文档说“可用性:Unix”,但是在你的Python构建中也值得检查它是否也适用于Windows(即文档可能不是最新的)。

否则,您可以使用pywin32库直接调用GetDiskFreeSpaceEx函数。

答案 8 :(得分:2)

您可以使用df作为跨平台方式。它是GNU core utilities的一部分。这些是预期存在于每个操作系统上的核心实用程序。但是,默认情况下它们不会安装在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 :(得分:1)

下面的代码在Windows上返回正确的值

import win32file    

def get_free_space(dirname):
    secsPerClus, bytesPerSec, nFreeClus, totClus = win32file.GetDiskFreeSpace(dirname)
    return secsPerClus * bytesPerSec * nFreeClus

答案 10 :(得分:0)

我不知道有任何跨平台的方法来实现这一点,但也许一个很好的解决方法是编写一个包装器类来检查操作系统并为每个操作系统使用最佳方法。

对于Windows,win32扩展中有GetDiskFreeSpaceEx方法。