On Mon, Jan 4, 2010 at 11:01 PM, Rob Keniger <[email protected]> wrote: > In the Finder and when using Terminal, the folder is named "Users". From what > I can tell there are no extended attributes on the Users folder, running > "xattr -l -v /Users" returns nothing.
The default Users directory has a .localized file in it, which will cause the Finder to use the system's localized name for the folder rather than the on-disk name. So the Finder is useless for investigating this behavior. If the directory is on a case-insensitive HFS volume (the default), it won't matter whether you call it "users" or "Users"; either will work. Therefore `stat /Users` at the Terminal will not provide conclusive results. It will also be helpful to see what the value of $HOME is, and if it jives with the on-disk name. --Kyle Sluder _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
