iphone - 如何知道应用程序使用的存储大小?
我的应用程序正在缓存内容,以便用户可以在离线时阅读。
我将缓存的所有内容写入 iPhone 中的数据库文件(使用 CoreData)。
然而,iPhone 中的存储空间是有限的。所以我想控制我的应用程序正在使用的磁盘大小。
如何查看我正在使用的磁盘大小?
谢谢
My app is caching content so that user can read it when offline.
I wrote everything of the cache into a database file (using CoreData) in iPhone.
However, the storage size is limited in iphone. So I would like to control the disk size my app is using.
How can I check the disk size I am using?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单、最准确的解决方案是直接检查持久存储的大小。
使用
-[NSFileManager attributeOfItemAtPath:error:]
,然后使用返回字典的fileSize
键。The simplest and most accurate solution is to check the size of the persistent store directly.
Use
-[NSFileManager attributesOfItemAtPath:error:]
and then thefileSize
key of the returned dictionary.