We are making an app in adobe air in which we want to save files downloaded from the internet. We would prefer that this is stored to the external sd card since the filesize is big.
Now according to this link - ((http://developer.android.com/guide/topics/data/data-storage.html#AccessingExtFiles)) since Android 4.4 - we dont need any permission to write to your apps = private directories.
We have been able to store the downloaded files to the "external partition" of internal memory. We want to be able to store the files on "external sd card" if it exists.
There is a function - getExternalFilesDirs() which enables this . What is the alternate function in Air (actionscript) to run this function?
Thanks & Regards,