REMOVEXATTR(2) | System Calls Manual | REMOVEXATTR(2) |
removexattr,
fremovexattr
— remove an
extended attribute value
#include
<sys/xattr.h>
int
removexattr
(const
char *path, const char
*name, int
options);
int
fremovexattr
(int
fd, const char
*name, int
options);
Extended attributes extend the basic attributes associated with files and directories in the file system. They are stored as name:data pairs associated with file system objects (files, directories, symlinks, etc).
removexattr
()
deletes the extended attribute name associated with
path.
An extended attribute's name is a simple NULL-terminated UTF-8 string. Options is a bit mask specifying various options:
XATTR_NOFOLLOW
removexattr
()
acts on the target of path if it is a symbolic link.
With this option, removexattr
() will act on the
link itself.XATTR_NOFOLLOW_ANY
XATTR_SHOWCOMPRESSION
removexattr
() and
fremovexattr
() will remove HFS Plus Compression
extended attribute name (if present) for the file
referred to by path or
fd.fremovexattr
()
is identical to removexattr
(), except that it
removes an extended attribute from an open file referenced by file
descriptor fd.
On success, 0 is returned. On failure, -1 is returned and the global variable errno is set as follows.
ENOATTR
]ENOTSUP
]EROFS
]EPERM
]EINVAL
]EINVAL
]fremovexattr
().ENOTDIR
]ENAMETOOLONG
]XATTR_MAXNAMELEN
UTF-8 bytes, or a component of
path exceeded NAME_MAX
characters, or the entire path exceeded
PATH_MAX
characters.EACCES
]ELOOP
]ELOOP
]EFAULT
]EIO
]removexattr
() and
fremovexattr
() first appeared in Mac OS X 10.4.
October 19, 2004 | Mac OS X |