Is an iPhone app's document directory /var/mobile/Documents or /var/mobile/Library/AppName?

后端 未结 7 784
小蘑菇
小蘑菇 2020-12-21 00:34

As far as I know (and read everywhere) an application\'s documents directory should be somewhere in /var/mobile/Library/ on the iPhone but if I\'m logging the g

7条回答
  •  执笔经年
    2020-12-21 01:12

    All files created by your application will be limited to the app sandbox (e.g. /var/stash/Applications/AppName. When you look for the file, settings.xml, you can get the filePath name using the code example from above.

    Storing the file outside your sandbox would not be recommended.

提交回复
热议问题