Android Studio – Finding Files in Directory With Specific Letters
I am listing all the files in the "shared prefs" directory of an app. There are 3 shared prefs in total: "User.xml" and "Note_1.xml" and "Note_2.xml". File f = new File("/data/data/com.bhiruva/shared_prefs/"); String[] pathnames; pathnames = f.list(); That is the code…