Reputation: 497
I need to programmatically save a bitmap file produced by my application into a directory. The user will be able to take it from its location via regular file explorers. Which way should I follow to determine a location for it?
For example:
Thanks.
Upvotes: 0
Views: 87
Reputation: 5145
Environment.getExternalStorageState();
This wili give you primary memory dir root path of your mobile so from this u can set your file root oath or directory
Upvotes: 1