0

我似乎无法从我的代码中获取备份属性参数。无论我似乎在做什么,该方法都会返回 false 并带有“未知错误 -1”。我已经尝试过跳过备份方法的不同迭代,但下面是我正在使用的最新版本,基于我发现的另一篇文章:

- (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL
{
    const char* filePath = [[URL path] fileSystemRepresentation];
    const char* attrName = "com.apple.MobileBackup";
    if (&NSURLIsExcludedFromBackupKey == nil) {
        // iOS 5.0.1 and lower
        u_int8_t attrValue = 1;
        int result = setxattr(filePath, attrName, &attrValue, sizeof(attrValue), 0, 0);
        return result == 0;
    } else {
        // First try and remove the extended attribute if it is present
        int result = getxattr(filePath, attrName, NULL, sizeof(u_int8_t), 0, 0);
        if (result != -1) {
            // The attribute exists, we need to remove it
            int removeResult = removexattr(filePath, attrName, 0);
            if (removeResult == 0) {
                NSLog(@"Removed extended attribute on file %@", URL);
            }
        }

        // Set the new key
        return [URL setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey error:nil];
    }
}

我对该方法的调用如下所示(在运行时它总是打印“不成功”):

if ([self addSkipBackupAttributeToItemAtURL:[NSURL fileURLWithPath:filePath]]) {
    NSLog(@"success!");
} else {
    NSLog(@"not successful");
}

filePath 是文档文件夹图像的 NSString 路径。我记录了一个图像路径的示例,如下所示:

/var/mobile/Applications/B3583D06-38BC-45F0-A027-E79997F0EC60/Documents/myImage.png

在我的应用程序中,它循环遍历我推出的所有(大量)文件,并添加了这个属性。它对他们每个人都失败了。由于这些动态驱动的文件对离线功能的严格要求,我需要能够使其正常工作。我没有看到很多其他人遇到这个问题,所以这告诉我我可能在这里遗漏了一些明显的东西,哈哈。

我找到了这篇文章:使用此代码从 iCloud 备份中排除文件后,为什么我的应用程序仍然被拒绝?

对于我的问题可能是什么,这看起来很有希望,但实际上并没有任何关于如何具体解决的细节(它只是建议使用 /Library 而不是 docs 文件夹?)。

提前感谢任何可以提供帮助的人!-文森特

4

1 回答 1

0

为了解决这个问题,我最终只需要在 /Documents 目录中创建一个文件夹,然后我更改了应用程序以将所有文件指向该子文件夹。

因此,在我的 AppDelegate 中,在预先加载任何内容之前,我添加了如下代码:

NSString *tempDir = [documentsDirectory stringByAppendingString:@"/tempfiles"];
[[NSFileManager defaultManager] createDirectoryAtPath:tempDir
                      withIntermediateDirectories:NO
                                       attributes:nil
                                            error:nil];
NSURL *tempDirPathURL = [NSURL URLWithString:tempDir];
if ([[MainControl controlSystem] addSkipBackupAttributeToItemAtURL:tempDirPathURL]) {
        NSLog(@"did add attribute!");
} else {
    NSLog(@"adding attribute failed! :(");
}

当我这样做时,它实际上进入了“确实添加属性”日志语句,没有任何问题!我不知道为什么这在单个文件级别不起作用,但至少这是有效的,而且它实际上是一个更好的解决方案,因为现在我不必遍历数百个文件来添加属性,我只必须将其添加到一个地方。

于 2012-07-20T15:48:28.570 回答