documentsDirectory 内のいくつかの画像ファイルを削除したいと考えています。ドキュメント ディレクトリには既に多数のファイルがありますが、ファイル名に「Test」という単語を含むファイルのみを削除したいと考えています。
どうすればこれを行うことができますか?
documentsDirectory 内のいくつかの画像ファイルを削除したいと考えています。ドキュメント ディレクトリには既に多数のファイルがありますが、ファイル名に「Test」という単語を含むファイルのみを削除したいと考えています。
どうすればこれを行うことができますか?
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:]
.