Locating Core Data’s sqlite database on Mac OS X app

core-data, macos

Solution

On OS X 10.7 Lion when the app is sandboxed, it is stored in:

~/Library/Containers/com.yourcompany.yourAppName/

Problem

Where I can find Core Data’s sqlite database of Mac OS X application? I have found it, but it's *.momd folder with 3 files (VersionInfo.plist, *.mom *.omo). How can I see the contents of it?

Original source