I wish to view the files stored in my phone in my android application.
But I have just checked out the permission on the following folder in my phone:
/storage/emulated/0/DCIM/Camera/ : drwx rwx --x
Also the files in the above directory have got the permissions are
file1: -rw-rw----
Please help me out..! How can I be able to list the files in my above directory
The following code used to work for the Android 5. but the apps crashes now
File file = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM);
String []list=file.list();
for(String s : list){
Log.d("YATES" , s);
}