在Python中确定文件系统的簇大小

发布于 2024-08-26 06:41:00 字数 339 浏览 5 评论 0原文

我想用 Python 计算文件的“磁盘大小”。因此我想确定存储文件的文件系统的簇大小。

如何在 Python 中确定簇大小? 或者,另一种计算“磁盘上的大小”的内置方法也可以使用。

我查看了 os.path.getsize 但它返回文件大小以字节为单位,不考虑 FS 的块大小。

我希望这可以以独立于操作系统的方式完成......

I would like to calculate the "size on disk" of a file in Python. Therefore I would like to determine the cluster size of the file system where the file is stored.

How do I determine the cluster size in Python?
Or another built-in method that calculates the "size on disk" will also work.

I looked at os.path.getsize but it returns the file size in bytes, not taking the FS's block size into consideration.

I am hoping that this can be done in an OS independent way...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独木成林 2024-09-02 06:41:00

在 UNIX/Linux 平台上,使用 Python 的内置 os.statvfs。在 Windows 上,除非您能找到执行此操作的第三方库,否则您需要使用 ctypes 来调用 Win32 函数 GetDiskFreeSpace,如下所示:

import ctypes

sectorsPerCluster = ctypes.c_ulonglong(0)
bytesPerSector = ctypes.c_ulonglong(0)
rootPathName = ctypes.c_wchar_p(u"C:\\")

ctypes.windll.kernel32.GetDiskFreeSpaceW(rootPathName,
    ctypes.pointer(sectorsPerCluster),
    ctypes.pointer(bytesPerSector),
    None,
    None,
)

print(sectorsPerCluster.value, bytesPerSector.value)

请注意,ctypes 仅在 2.5 或 2.6 中成为 Python stdlib 的一部分(不记得是哪一个)。

我将此类内容放入一个函数中,该函数首先检查 UNIX 变体是否存在,如果不存在(可能是因为它在 Windows 上运行),则回退到 ctypes。这样,如果 Python 在 Windows 上实现了 statvfs,它就会使用它。

On UNIX/Linux platforms, use Python's built-in os.statvfs. On Windows, unless you can find a third-party library that does it, you'll need to use ctypes to call the Win32 function GetDiskFreeSpace, like this:

import ctypes

sectorsPerCluster = ctypes.c_ulonglong(0)
bytesPerSector = ctypes.c_ulonglong(0)
rootPathName = ctypes.c_wchar_p(u"C:\\")

ctypes.windll.kernel32.GetDiskFreeSpaceW(rootPathName,
    ctypes.pointer(sectorsPerCluster),
    ctypes.pointer(bytesPerSector),
    None,
    None,
)

print(sectorsPerCluster.value, bytesPerSector.value)

Note that ctypes only became part of the Python stdlib in 2.5 or 2.6 (can't remember which).

I put this sort of thing in a function that first checks whether the UNIX variant is present, and falls back to ctypes if (presumably because it's running on Windows) not. That way, if Python ever does implement statvfs on Windows, it will just use that.

口干舌燥 2024-09-02 06:41:00

使用 statvfs,至少如果您的目标是 Python 3.0 之前的版本。不确定它已被替换为什么。

我还认为你必须自己计算一下,Python 似乎没有公开文件的“块大小”。

Use statvfs, at least if you're aiming for a pre-3.0 version of Python. Not sure what it has been replaced with.

I also think you're going to have to do the maths yourself, Python doesn't seem to expose the "size in blocks" of files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文