NSfileManager*manager = [NSfileManager defaultManager];Nsstring*dirTocopyTo = [NSHomeDirectory() stringByAppendingPathComponent:@"documents"];Nsstring*path = [[NSBundle mainBundle] resourcePath];Nsstring*dirTocopyFrom = [path stringByAppendingPathComponent:@"Samples"];NSError*error;NSArray*files = [manager contentsOfDirectoryAtPath:dirTocopyFrom error:nil];for (Nsstring *file in files){ [manager copyItemAtPath:[dirTocopyFrom stringByAppendingPathComponent:file] topath:dirTocopyTo error:&error]; if (error) { NSLog(@"%@",[error localizedDescription]); }}
编辑:我只是按照它应该的方式编辑代码.然而现在又出现了另一个问题:
@H_419_17@2010-05-15 13:31:31.787 WriteIt
Mobile[4587:207] damutableDictionary.h
2010-05-15 13:31:31.795 WriteIt
Mobile[4587:207] fileManager
Error:Operation Could not be
completed. file exists
编辑:我通过告诉NSfileManager复制文件的目的地名称来解决问题.
[manager copyItemAtPath:[dirTocopyFrom stringByAppendingPathComponent:file] topath:[dirTocopyTo stringByAppendingPathComponent:file] error:&error];解决方法 我认为问题出在这一行:
NSArray*files = [manager contentsOfDirectoryAtPath:dirTocopyTo error:nil];
您将文件列在目标目录而不是源中.将其更改为:
NSArray*files = [manager contentsOfDirectoryAtPath:dirTocopyFrom error:nil];
而你应该没事.
总结以上是内存溢出为你收集整理的iphone – NSFileManager – 在启动时复制文件全部内容,希望文章能够帮你解决iphone – NSFileManager – 在启动时复制文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)