4

我不希望将任何内容备份到 iCloud。但是,我的数据无法重新创建,因此我需要将其放在应用程序的文档目录中。对于每个文件,我都做了标准:

    - (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL
{
    if (&NSURLIsExcludedFromBackupKey == nil) { // iOS <= 5.0.1
        const char* filePath = [[URL path] fileSystemRepresentation];

        const char* attrName = "com.apple.MobileBackup";
        u_int8_t attrValue = 1;

        int result = setxattr(filePath, attrName, &attrValue, sizeof(attrValue), 0, 0);
        return result == 0;
    } else { // iOS >= 5.1
        return [URL setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey error:nil];
    }
}

我那里有 5mB 的数据。但我的应用仍在 iCloud 中注册 0.2kB(通过设置->iCLoud->管理存储)。所以,为了确定,我这样做了:

-(void)resetBackupAttributes {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSArray *fileListAct = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsDirectory error:nil];
    for (NSString *path in fileListAct) {
        [self addSkipBackupAttributeToItemAtURL:[NSURL fileURLWithPath:path]];
    }

    NSArray *paths2 = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    NSString *cacheDirectory = [paths2 objectAtIndex:0];
    NSArray *fileListCache = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:cacheDirectory error:nil];
    for (NSString *path in fileListCache) {
        [self addSkipBackupAttributeToItemAtURL:[NSURL fileURLWithPath:path]];
    }
    NSArray *paths3 = NSSearchPathForDirectoriesInDomains(NSPreferencePanesDirectory, NSUserDomainMask, YES);
    NSString *preferencesDirectory = [paths3 objectAtIndex:0];
    NSArray *fileListPref = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:preferencesDirectory error:nil];
    for (NSString *path in fileListPref) {
        [self addSkipBackupAttributeToItemAtURL:[NSURL fileURLWithPath:path]];
    }
}

它仍然有 0.2kB!有什么我想念的吗?是否会备份少量数据,无论...像目录树还是其他东西?我真正想知道的是,这 0.2kB 是否会因为我不遵守数据存储指南而被拒绝?

4

1 回答 1

0

好的,所以我会将我的评论放入答案中:

您的应用程序默认 plist 是否有可能在云中备份?- 但是你可以在你的 iOS(模拟器)和互联网之间连接一个代理。只需捕获所有传出数据并查看实际传输的内容;)。例如鱿鱼人

这是SquidMan的链接,以防万一……<br> 正如您所说,您也认为它是 plist。您可以通过设置带有一些垃圾数据的密钥来验证这一点,并查看总量是否增加。;)

于 2012-04-24T16:21:40.150 回答