I thought this was something really simple, but it\'s giving me more work than the rest of the whole app.
I just want a button to open the \"Downloaded Files\" folde
I think this one could work for you:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath() + "/yourFolder/"); intent.setDataAndType(uri, "*/*"); startActivity(Intent.createChooser(intent, "Open /sdcard/yourFolder"));