Reputation: 391
I need do the file list in ListView. Files from the folder (.txt files). How can I do it?
Upvotes: 1
Views: 4070
Reputation: 15701
see this link
use
File mfile=new File("/sdcard");
File[] list=mfile.listFiles();
and filter in loop using
if(name.endsWith(".txt")) { }
How to list all files and folders locating on sd card
How do I count the number of files with a specific extension on Android?
Upvotes: 1