1

我已经安装了一个驱动器。

在它的“获取信息”中,我有一个名为Image Disk

那个地点:/private/var/run/vmware/fuse/10323660103412696815/flat

如何使用 python 获取此属性?

os.stat不给我这个。

4

1 回答 1

4

Use the getxattr function from the xattr module, which is a Python binding to the native function getxattr(2). For example:

import xattr
print xattr.getattr('/Volumes/MyDrive', 'Image Disk')

See this blog post for a more detailed example.

于 2012-06-12T21:58:56.687 回答