Disable backup of documents folder and all its sub folders on icloud?

后端 未结 4 998
离开以前
离开以前 2020-12-19 09:55

I have an already running enterprise application which stores a lot of documents inside the documents folders. I wish to disable the iCloud backup of all these documents and

4条回答
  •  余生分开走
    2020-12-19 10:28

    In appDelegate of your application in the following method

     - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    

    Add this code

        NSArray *urlArray = [[NSFileManager defaultManager] URLsForDirectory: NSDocumentDirectory inDomains: NSUserDomainMask];
        NSURL *documentsUrl = [urlArray firstObject];
    
        NSError *error = nil;
        BOOL success = [documentsUrl setResourceValue: [NSNumber numberWithBool: YES]
                                      forKey: NSURLIsExcludedFromBackupKey error: &error];
        if(!success){
            NSLog(@"Error in disabling %@ from backup %@", [documentsUrl lastPathComponent], error);
        }
    

提交回复
热议问题