Hi, I am looking for a solution to list all files from a root / Android device.
Suppose there are 3 folders in the root directory, but I want to display all the files in this entire folder in one list.
Now if i use
File f=new File("/sdcard");
Then it will list all the files only from the sdcard folder .. and if I use
File f=new File("/download");
Then it will list all the files from the download folder .. and if I use
File f=new File("/");
Then it will list only rootcoty root file files ... not files inside / sdcard or / download ..
So, what steps should I follow to list all files with a filter, to list only .csv files from the entire folder inside root.
Thank..
android android-file
Kanika Mar 02 2018-12-12T00: 00Z
source share