方法一 :这段objective c代码用于删除指定路径的文件 if ([fileManager removeItemAtPath:@"FilePath" error:NULL]) { NSLog(@"Removed successfully"); } 方法二: NSFileManager *defaultManager;defaultManager = [NSFileManager defaultManager];[defaultManager removeFileAtPath: tildeFilenamehandler: nil]; handler可以接收消息,比如如果删除失败,可以使用fileManager:shouldProceedAf...
[ 查看全文 ]