このコードは、plistファイルをusersフォルダーのApplicationSupportディレクトリにコピーします。
NSString *resourcePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:kAutonumberPlist];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
NSString *dataPath = [[paths objectAtIndex:0] stringByAppendingPathComponent:kAutonumberPlist];
NSFileManager *fileManager = [NSFileManager defaultManager];
if (![fileManager fileExistsAtPath:dataPath]) {
[fileManager copyItemAtPath:resourcePath toPath:dataPath error:nil];
}
ファイルを〜User / Library / ApplicationSupportにコピーする代わりに、〜User / Library / ApplicationSupport / AnotherFolderにコピーするように変更するにはどうすればよいですか?ちなみに「AnotherFolder」はすでに存在します。
ありがとうございました!