Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 python 中使用 xattr,但是发现 xattr 的 keys() 是空的,这是否表明 libattr 功能没有启用?我了解到 libattr 功能在 ext3/ext4 中默认是禁用的,但是如何启用它呢?期待您的帮助!谢谢~
>>> import xattr >>> x = xattr.xattr('tiger_8a428_userdvd.dmg') >>> x <xattr file='tiger_8a428_userdvd.dmg'> >>> x.keys() []
也许您可以使用以下内容:
>>> x = xattr.get_all('tiger_8a428_userdvd.dmg')
应该更好。