我使用以下代码
创建了一个数据库文件// Get the documents directory
NSArray *dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *docsDir = dirPaths[0];
// Build the path to the database file
databasePath = [[NSString alloc] initWithString: [docsDir stringByAppendingPathComponent:@"MyDB.db"]];
如何删除文件" MyDB.db" ?
提前致谢。
答案 0 :(得分:1)
您可以使用以下
删除文件NSError *error;
if(![[NSFileManager defaultManager] removeItemAtPath:databasePath error:&error]) {
NSLog(@"error while removing file: %@", error.localizedDescription);
}