如何以编程方式将整个.app
捆绑包 ( [[NSBundle mainBundle] bundleURL]
) 复制到我的桌面?
这是我的代码,但对我没有帮助。
NSString *sourcepath = [[NSBundle mainBundle] bundlePath];
NSString *destpath = [NSHomeDirectory() stringByAppendingPathComponent:@"Desktop"];
[[NSFileManager defaultManager] copyItemAtPath:sourcepath toPath:destpath error:nil];