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

前端 未结 5 2129
挽巷
挽巷 2021-02-09 14:38

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 s

5条回答
  •  再見小時候
    2021-02-09 15:08

    The persistent store in Core Data is just a file. So it's most likely in your Documents directory if it's a user's document. If it's an internal store, then it may be in the bundle, or may be put somewhere like ~/Library/Application Support.

提交回复
热议问题