I have a camera app which save image to separate folder inside the gallery.
Path to my folder is /storage/emulated/0/Pictures/CameraExample/
When I click on the button I need to open the folder where I have saved the images. I have used all the solution which was available.
This how I'm reading the path. Let me know if i'm wrong.
String path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath();
Log.d("HelperUtils . getFilePaths", "setting the path " + path);
String targetPath = path +"/CameraExample/";
How to start a new Intent and open the files?