在Python中确定文件系统的簇大小
我想用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 UNIX/Linux 平台上,使用 Python 的内置 os.statvfs。在 Windows 上,除非您能找到执行此操作的第三方库,否则您需要使用 ctypes 来调用 Win32 函数 GetDiskFreeSpace,如下所示:
请注意,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:
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.
使用 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.