如何删除应用程序中指定目录下的所有文件?
给定一个目录 [[self filesDirectory] stringByAppendingPathComponent:@"Photos/"]
如何删除此文件夹中的所有文件?
(假设正确的文档目录路径)
Given a directory [[self documentsDirectory] stringByAppendingPathComponent:@"Photos/"]
how do I delete ALL FILES in this folder?
(assume a correct documents directory path)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果错误存在,我会让您对错误执行一些有用的操作。
I leave it up to you to do something useful with the error if it exists.
如果您想删除文件和目录本身,请在不使用
for
循环的情况下使用它if you want to remove files and the directory itself then use it without
for
loop对于快速爱好者来说也是如此:
same for swift lovers:
大多数较旧的答案都让您使用
contentsOfDirectoryAtPath:error:
,它可以工作,但是 根据 Apple:因此如果您想使用 NSURL 来代替,您可以使用方法
contentsOfDirectoryAtURL:includePropertiesForKeys:options:error:
所以它看起来像这样:Most of the older answers have you use
contentsOfDirectoryAtPath:error:
which will work, but according to Apple:so if you want to use NSURL instead you can use the method
contentsOfDirectoryAtURL:includingPropertiesForKeys:options:error:
so it would look something like this:斯威夫特4
Swift 4