I am using Application.persistentDataPath to cache multimedia files which may add up. I can easily manage this to delete unused files and keep the folder not too big. But I am wondering if Android/iOS have any internal monitoring for the size of this folder and will throttle me at some point.
I presume the operating systems would not let me expand this folder until the entire hard drive space is used, or would they? I don’t intend to do so but I need to know if they will crash my app or do something else past a certain storage.
Secondary to this question, to help with space management, is there any way (even with native iOS/Android code) to detect the amount of free disk space so I know how much room I overall have to work with as well? This would help me know how much I can cache.
Thanks for any thoughts on either point.