I\'m happy reading and writing to a pre-set file, and could manually populate a listview, but I\'m hoping there is an official(or not) filebrowser I missed, or other more el
final String state = Environment.getExternalStorageState(); if (Environment.MEDIA_MOUNTED.equals(state)) { File[] files = Environment.getExternalStorageDirectory().listFiles(); } else { ... }