I'm using MacFUSE to create a cool filesystem. I'd like to set the NSFileOwnerAccountID and NSFileGroupOwnerAccountID attributes for the files on it, but the underlying framework I use only gives me user names.

How can I get an account ID from an account name under Mac OS X using Cocoa or other built-in frameworks?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

These are just UID and GID numbers. Try the getpwnam (for user) and getgrnam (for group) functions; each returns a structure that contains the ID number, among other things.

Alternatively, just use NSFileOwnerAccountName and NSFileGroupOwnerAccountName instead of the …AccountID versions.

link|improve this answer
MacFuse absolutely wants the AccountID versions. – zneak Nov 17 '10 at 4:03
@zneak: Dang. Well, those two functions should work for getting them. – Peter Hosey Nov 17 '10 at 4:56
feedback

What you could do is get a list of all the CSIdentity objects and build a "username to identity" map. Once you have the identity object, you can get a bunch of other information from it.

More info:

link|improve this answer
I'll look into it. – zneak Nov 16 '10 at 21:10
The Collaboration framework (linked from the Identity Services Programming Guide) will probably be easier to use. – zneak Nov 16 '10 at 21:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.