I want to set Do not back up to my folder which is in Document Directory.

I found code for "Do not back up" , but how do i verify that the folder is marked.

link|improve this question

Did you get this working? I am also trying something similar for directory in Documents. Do we have to do this for all files under directory? – AppleDeveloper Nov 23 '11 at 9:27
@AppleDeveloper : Yes, you have to mark your directory if you dont want to back up on iCloud. I have tried this. but waiting for apple's reviews. – Devang Nov 24 '11 at 4:15
Cool. Me too waiting for Apple's review. I have given my code at stackoverflow.com/questions/8209755/…. Please let me know if you see any issues. Thanks. – AppleDeveloper Nov 24 '11 at 9:18
feedback

2 Answers

up vote 7 down vote accepted

According to the docs you linked, if you set the method up exactly how they have it listed on that page, the method will return YES if the attribute is marked correctly.

link|improve this answer
ok. But from the document I found Important: The new "do not back up" attribute will only be used by iOS 5.0.1 or later. 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. So Do I need to change my folder location to library for Apple approval. – Devang Nov 14 '11 at 4:54
2  
Your app can check the OS version and do the appropriate thing. – hotpaw2 Nov 14 '11 at 14:32
Please correct me if I'm wrong. It seems like there are three cases: Pre 5.0, 5.0, and 5.0.1. For 5.0.1, you can mark your folder as "Offline Data". In 5.0, iCloud exists, but without a "do not back up" solution, so you'll have to put data in Library/Caches, where it will be purged :(. Pre 5.0 doesn't have iCloud, and AFAIK data wont be purged from Documents or Caches, so it's probably safe to put data in Caches here as well. – Michael Nov 28 '11 at 18:37
2  
@Michael My understanding is that for Pre 5.0 and for 5.0 you can put offline data (data that can be downloaded or otherwise recreated, but that the user expects to be reliably available when offline) in the <Application_Home>/Documents directory or in the <Application_Home>/Library/Private Documents directory. It will be backed up for 5.0 but that's ok. – Nikolai Sander Dec 5 '11 at 18:35
@NikolaiSander - have you verified that it is ok for Pre 5.0 and 5.0 for Apple approval? I have the 'do not back up' flag set for 5.0.1 but really don't want to come up with a solution just for 5.0. – FishStix Feb 23 at 2:32
feedback

Run the app in the simulator, then use the Terminal to run this command against the relevant files:

xattr -plxv com.apple.MobileBackup <file name>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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