Delete files from NSCachesDirectory programmatically
问题 If I downloaded files in NSCachesDirectory programmatically in my app, is it also possible to delete the files programmatically? 回答1: There may be many way for get full path of File from Directory , following is one of them. NSArray *myPathList = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES); NSString *mainPath = [myPathList objectAtIndex:0]; mainPath = [mainPath stringByAppendingPathComponent:DirectoryName]; Here mainPath is Full Path of File. NSFileManager