Reputation: 123
My question is related to filesystem access in Android apps. Suppose I want to grab a file that another app just downloaded? Can I access the other apps file / doc-folder from within my ohwn app? My first guess is no...
Thanks for clarification ;-)
Greets, pawi
Upvotes: 1
Views: 2358
Reputation: 7053
If that other app is downloading the file to the sdcard, and your application has permission to access the sdcard, then yes, you can grab the file.
But if the other apps downloading to the internal filesystem, it will not be possible to get the file, unless the other app is allowing your app to do so, by using permissions or intents.
Upvotes: 3