Apple wants to reduce the size of your backup.
First, stop using documents. This does not fit.
If you can download the files again easily enough, you should store them in a place where they will not be copied. I suggest cache. If they are cleaned, you should simply load them again.
If downloading them again is difficult, they should be stored in a different location in the Library folder.
You can find the Caches directory using:
NSArray *paths = NSSearchPathForDirectoriesInDomains( NSCachesDirectory, NSUserDomainMask, YES);
Basically, this is what you have now, but instead of NSDocumentDirectory you use NSCachesDirectory .
If you manage the file names, this is normal as it is. If you do not, you should probably create a subdirectory and work from there so as not to run into anything.
source share