标签: iphone objective-c ios xcode nsdocumentdirectory
我想删除documentsDirectory中的几个图像文件。文档目录中已有大量文件,但我只想删除文件名中包含单词“Test”的文件。
我该怎么做呢?
答案 0 :(得分:4)
非常简单。查看[NSFileManager contentsOfDirectoryAtPath:error:],其中列出了指定目录中的所有文件。然后,您可以根据需要过滤/迭代数组。
[NSFileManager contentsOfDirectoryAtPath:error:]
要删除文件,请使用[NSFileManager removeItemAtPath:error:]。
[NSFileManager removeItemAtPath:error:]