现在的位置: 首页 > 综合 > 正文

目录不上传到 iColund

2018年02月02日 ⁄ 综合 ⁄ 共 450字 ⁄ 字号 评论关闭
- (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;
}
[self addSkipBackupAttributeToItemAtURL:[[NSURL alloc] initFileURLWithPath:musicDirectory isDirectory:YES]];

抱歉!评论已关闭.