I'm working on a game in Cocoa that saves the high scores in /Library/Application Support/MyGame/Scores.plist so that they are accessible to every user on the machine. AFAIK, this is exactly where Apple suggests you put these types of resources.
Basically my code checks to see if the directory MyGame is in the /Library/Application Support directory, and creates it if it isn't.
My code works perfectly in my account (because I'm an admin), but I cannot create the folder if I'm in any other (ie, non-admin) account on the machine. It's because I have Read/Write access to the Application Support directory, but everyone else has Read only, and so they cannot create this folder.
What are my options?
Thanks in advance
