I am downloading many audio and video files and stored them in my Home directory. Now i want to "prevent backup to iCloud" so i have added following code for my every file's url

- (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL

{

    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;

}

Can anyone tell me that will this code work for all IOS versions. if not then please suggest the correct way to do this. Thank You

link|improve this question

65% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Can anyone tell me that will this code work for all IOS versions.

No, it doesn't. In its Technical Note introducing the "do not backup" flag, Apple clearly states that

The new "do not back up" attribute will only be used by iOS 5.0.1 or later.

They also tell you what you need to do for older iOS versions:

On iOS 5.0 and earlier, applications will need to store their data in <Application_Home>/Library/Caches to avoid having it backed up. Since this attribute is ignored on older systems, you will need to insure your app complies with the iOS Data Storage Guidelines on all versions of iOS that your application supports.

link|improve this answer
+1 thank you for the answer – sajwan Dec 20 '11 at 12:46
This seems to be a catch 22 if you have an updatable database, because databases stored in the cache aren't updatable. – Jack BeNimble Feb 1 at 0:30
Changed documentation URLs (again): developer.apple.com/library/ios/#qa/qa1719/_index.html – Nikolai Ruhe Feb 6 at 19:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.