I'm developing an application that when I click on a button it exports all my database to an excel file, this file is inside a folder created by the application itself, this created folder is in the internal memory of the device. My question is, if I put a button I can open this folder so I can view the files?
I tried something like this to try to open the folder that contains the files, but I did not succeed.
Uri selectedUri = Uri.parse(Environment.getExternalStorageDirectory() +
"/DSS_DIGITAL/");
Intent dss_digital = new Intent(Intent.ACTION_GET_CONTENT);
dss_digital.setDataAndType(selectedUri, "resource/folder");
startActivity(dss_digital);
Thanks to anyone who can help.