美文网首页
用户文件夹防止备份到iCloud

用户文件夹防止备份到iCloud

作者: Rui哥 | 来源:发表于2020-07-29 16:29 被阅读0次

//用户文件夹防止备份到iCloud

  • (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL{
    assert([[NSFileManager defaultManager] fileExistsAtPath: [URL path]]);

    NSError *error = nil;
    BOOL success = [URL setResourceValue: [NSNumber numberWithBool: YES]
    forKey: NSURLIsExcludedFromBackupKey error: &error];
    if(!success){
    NSLog(@"Error excluding %@ from backup %@", [URL lastPathComponent], error);
    }
    return success;
    }

相关文章

网友评论

      本文标题:用户文件夹防止备份到iCloud

      本文链接:https://www.haomeiwen.com/subject/xpfkrktx.html