I need to set the xattrs on files fairly frequently, and I'm concerned about the efficiency of such an operation, in particular, the setxattr function provided by OS X only takes a single key - value pair. However, if I need to set say 10 different xattrs on a file, it seems very inefficient to have to go through this single routine many times, I looked around but couldn't find a function that allow you to set multiple xattrs at the same time, do they exist?
Additionally, does setting the xattrs require opening the file itself? How efficient is it generally?