我在cocoa中开发一个应用程序,需要将添加到资源的文件夹复制到System / library中的其他位置。如何指定源路径和目标路径。寻找解决方案
提前致谢
答案 0 :(得分:1)
我在cocoa中开发一个应用程序,需要将添加到资源的文件夹复制到System / library中的其他位置。
答案 1 :(得分:-1)
你使用的NSFileManager
有很方便的方法。有像
- (BOOL)copyItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error
以下是来自apple docs的描述:
Copies the directory or file specified in a given path to a different location in the file system identified by another path.