-3

documentsDirectory 内のいくつかの画像ファイルを削除したいと考えています。ドキュメント ディレクトリには既に多数のファイルがありますが、ファイル名に「Test」という単語を含むファイルのみを削除したいと考えています。

どうすればこれを行うことができますか?

4

1 に答える 1

4

Pretty simple. Have a look at [NSFileManager contentsOfDirectoryAtPath:error:], which lists you all the files in the specified directory. Then you could filter/iterate the array according to your needs.

To delete a file use [NSFileManager removeItemAtPath:error:].

于 2012-11-01T09:08:06.460 に答える