Objective-c 复制资源文件到Document
在做sqlite数据库连接的时候,把项目中的数据库复制到沙盘中的Document目录,这样方便增删改操作
复制文件需要文件的路径和新文件的路径
首先获取Document路径
NSString *document = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
然后创建新文件路径
NSString *newFile = [document stringByAppendingPathComponent:@"test.sqlite"];
接着获取资源文件路径
NSString *oldFile = [NSBundle mainBundle] pathForResource:@"test" ofType:@"sqlite"];
最后使用NSFileManager复制文件
NSFileManager *fileManager = [NSFileManager defaultManager]; [fileManager copyItemAtPath:oldFile toPath:newFile error:nil];
相关推荐
84407518 2012-07-16
87214552 2015-10-27
84407518 2016-01-25
89283517 2012-06-19
ObjectiveC 2012-06-14
zhujiangtaotaise 2020-01-01
AllenG 2013-07-07
Beatopcoder 2013-07-14
afrtooylsw 2014-05-14
让编程改变世界 2015-03-13
shqhope 2015-04-09
zoutian00 2015-05-12
huangshm 2019-01-14
86981633 2019-06-29
我的iOS王者之路 2019-06-28
好好学习天天 2019-06-28