iPhone SDK Xcode - 如何获取文档目录中的所有文件名
我想获取应用程序的 documents
文件夹中的所有文件名,并将它们放入 NSMutableArray
中。不多不少。
I want to get all the filenames in my application's documents
folder, and place them in an NSMutableArray
. Nothing more, nothing less.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSFileManager 中有一个方便的方法:
从 ARC 开始,您当然可以删除release语句。
There is a convenient method in
NSFileManager
:As of ARC you can of course drop the release statement.