gpt4 book ai didi

cocoa - 将首选项 Pane 复制到库文件夹

转载 作者:行者123 更新时间:2023-12-03 17:22:00 24 4
gpt4 key购买 nike

我正在尝试将 settings.prefPane 文件复制到 ~/Library/PreferencePanes/。但它总是失败并出现文件存在的错误。

NSBundle *appBundle = [NSBundle mainBundle];
NSFileManager *fileMgr = [[NSFileManager alloc] init];
NSError *error;
[fileMgr copyItemAtPath:[appBundle pathForResource:@"settings"
ofType:@"prefPane"]
toPath:@"~/Library/PreferencePanes/"
error:&error];

为什么总是失败?

最佳答案

在执行其他操作之前,您可以检查该文件是否已存在于您的路径中:

success = [fileMgr fileExistsAtPath:_yourPreferencesPanePath];
if (success) {
return;
}

关于cocoa - 将首选项 Pane 复制到库文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21646221/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com