How would I go about getting an array of all the files in a specific directory on the sdcard, i.e. /ringtones/?

link|improve this question

25% accept rate
feedback

3 Answers

up vote 1 down vote accepted

It's very simple. Just do the following:

File dir = new File(path);
String[] files = dir.list();
link|improve this answer
feedback

You are looking in a specific location and obviously if you are looking in the ringtones directory you want audio type files. Here is exactly how to accomplish that task.

I have created an example application for you that shows exactly how to accomplish this task

Source Code: Find files by type + play media file

link|improve this answer
excellent tutorial, thanks for going the extra mile – Edward Jul 8 '10 at 21:46
feedback

You should try this : http://developer.android.com/guide/topics/data/data-storage.html#filesExternal

Hope I have helped.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.