在這種情況下,我按照這個辦法:
首先保存RootList.txt在xCode.You資源文件夾中有沒有在你的文檔文件夾,但。
在你applicationDidLaunch呼叫的開始,做:
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *docsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *path = [docsDirectory stringByAppendingPathComponent:@"RootList.txt"];
if(![fileManager fileExistsAtPath:path])
{
NSData *data = [NSData dataWithContentsOfFile:[[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/RootList.txt"]];
[data writeToFile:path atomically:YES];
}
現在,你的文件是在文檔文件夾中在啓動時。
謝謝ahmet,這是有道理的 – user238712