Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to search all .pdf and .doc file present in the Android device through programmatic way?

share|improve this question

2 Answers

up vote 7 down vote accepted

Try using the below code, This will work for u.

 public void walkdir(File dir) {
    String pdfPattern = ".pdf";

    File listFile[] = dir.listFiles();

    if (listFile != null) {
        for (int i = 0; i < listFile.length; i++) {

            if (listFile[i].isDirectory()) {
                walkdir(listFile[i]);
            } else {
              if (listFile[i].getName().endsWith(pdfPattern)){
                                  //Do what ever u want

              }
            }
        }
    }    
}

EDIT

To search on the whole sdcard call this function using

walkdir(Environment.getExternalStorageDirectory());
share|improve this answer

Have a look here

Basicly get a starting Directory and then call "list" with a filter(FilenameFilter) and then traverse sub directories. Not sure if there is a one function that does all this for you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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