我已经安装了一个驱动器。
在它的“获取信息”中,我有一个名为Image Disk
那个地点:/private/var/run/vmware/fuse/10323660103412696815/flat
如何使用 python 获取此属性?
os.stat
不给我这个。
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.