如何检查数据库是否存在?我有一个名为 username 的数据库,如果它不存在则应该创建它,但我如何检查它是否存在?
问问题
2376 次
1 回答
2
你应该只使用fileExistsAtPath
. 例如,在数据库不存在的情况下进行特殊处理:
if (![[NSFileManager defaultManager] fileExistsAtPath:pathForDb])
{
// file doesn't exist, so do whatever copying from bundle or
// programmatic creation/configuration of the database here.
}
于 2013-09-30T22:35:34.910 回答