如何在运行时使用我的应用程序包创建新的子目录/文件夹?
我正在将许多文件写入磁盘,并且我想将它们分成不同的类别,但我该怎么做呢?
I am writing many files to disk, and I would like to split them up into different categories, but how do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅
NSFileManager
类中的以下方法:另请注意,您无法将任何内容写入应用程序bundle。然而,应用程序沙箱包含多个可以在其中写入的文件夹(它们之间的选择取决于您的需要)。请参阅 “常用目录” 了解更多信息。
See following methods in
NSFileManager
class:Note also that you cannot write anything into application bundle. Application sandbox however contains several folders where you can write (the choice between them depends on your needs). See "Commonly Used Directories" for more information.