0
画像はデフォルトのギャラリーにpoliceSuites
フォルダからすべての画像を閲覧したい/storage/emulated/0/policeSuites/
表示画像のみ
で保存されています。
public void openFolder() {
File storageDir = Environment.getExternalStoragePublicDirectory("/Police photo suits");
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(String.valueOf(storageDir));
intent.setDataAndType(uri, "image/*");
startActivity(Intent.createChooser(intent, "Open folder"));
}