H A D | xattr.py | 20 def listxattr(path, follow=True): argument 21 func = libc.listxattr if follow else libc.llistxattr 59 def getxattr(path, name, follow=True): argument 60 func = libc.getxattr if follow else libc.lgetxattr 87 def get_all_xattr(path, follow=True): argument 90 names = listxattr(path, follow) 93 value = getxattr(path, name, follow)
|