You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the remaining files in AppData are 613.8-555.9=57.9MB
I'm confused as to why iOS seems to be counting my 0.5GB of caches towards my app's Documents & Data usage. for the files I'm saving in the cache, I use the static func url(for path: String?, in directory: Directory) throws -> URL, with the directory: .caches to access a sub folder inside the caches
Is this expected behavior? or am I doing something wrong? I expected the Settings app to report ~57MB of documents & data usage, not ~600MB
The text was updated successfully, but these errors were encountered:
Hey! posting this since I can't find any relevant documentation about this from Apple or otherwise:
It seems like iOS is counting my app's Library/Caches. all the documentation I can find (like https://developer.apple.com/documentation/foundation/optimizing_your_app_s_data_for_icloud_backup/#3928528) seems to explicitly call out the Caches/ usage isn't counted towards Documents & Data.
here's the app's usage, from the Settings app
If I download the app container, I see:
613.8-555.9
=57.9MBI'm confused as to why iOS seems to be counting my 0.5GB of caches towards my app's Documents & Data usage. for the files I'm saving in the cache, I use the
static func url(for path: String?, in directory: Directory) throws -> URL
, with thedirectory: .caches
to access a sub folder inside the cachesIs this expected behavior? or am I doing something wrong? I expected the Settings app to report ~57MB of documents & data usage, not ~600MB
The text was updated successfully, but these errors were encountered: