I see files from apps all over in the sd card so there doesn’t seem to be an android standard. But when saving app related files externally, is there a recommended directory path to use or a common practice?
ie. (sdcard)/myapp/ or (sdcard)/apps/myapp/
Simply use
Environment#getExternalStoragePublicDirectory(String type)with the various String types for a specific folder.This creates folders in
.../sdcard/Android/data/my.package.name/<type>.From the Developer’s Guides: