user1468102
user1468102

Reputation: 391

Android: File list in ListView

I need do the file list in ListView. Files from the folder (.txt files). How can I do it?

Upvotes: 1

Views: 4070

Answers (1)

Dheeresh Singh
Dheeresh Singh

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

Related Questions