iPhone 文件管理器的概念
我不知道 iPhone 中的文件管理器
谁能在这里解释一下文件管理器的概念
谢谢
I am unknown of file manager in iphone
Can anyone explain the concept of file manager here
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
引用自 Apple 低级文件管理编程指南
要理解的重要一点是您的应用程序在“沙箱”中运行 - 它只能访问自己的文件,而不能访问其他应用程序创建的文件。
关于文件系统的部分iOS 应用程序编程指南中描述了应用程序的布局及其创建的任何文件。
例如,以下是您如何使用 NSFileManager 打开应用程序包中名为“Defaults.plist”的文件并将其读入 NSData 对象:
Quoting from the Apple Low-Level File Management Programming Guide
An important point to understand is that your application runs in a "sandbox" - it has access only to its own files, not files created by other applications.
The section on the file system in the iOS Application Programming Guide describes the layout of your application and any files it creates.
For example, here's how you might use NSFileManager to open a file named "Defaults.plist" in your application bundle and read it into an NSData object: