アプリのドキュメントディレクトリから画像を削除したい。画像を削除するために私が書いたコードは次のとおりです。
-(void)removeImage:(NSString *)fileName
{
fileManager = [NSFileManager defaultManager];
paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
documentsPath = [paths objectAtIndex:0];
filePath = [documentsPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@", fileName]];
[fileManager removeItemAtPath:filePath error:NULL];
UIAlertView *removeSuccessFulAlert=[[UIAlertView alloc]initWithTitle:@"Congratulation:" message:@"Successfully removed" delegate:self cancelButtonTitle:@"Close" otherButtonTitles:nil];
[removeSuccessFulAlert show];
}
その部分的に動作します。このコードはディレクトリからファイルを削除しますが、ディレクトリの内容を確認すると、まだそこに画像名が表示されています。そのファイルをディレクトリから完全に削除したい。同じことを行うには、コードで何を変更する必要がありますか?ありがとう