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

I am implementimg one application related to my requirement,

I want to get all folders and sub folders of a sdcard.

For example i created a folder name tempfolder.

if i want to get the full path of a tempfolder.

like mnt/sdcard/folder/tempfolder.

If i don't know where the folder is stored in sdcard,

but i know the name of a folder.

is it possible to get the full path of a folder based on folder name.

If any onr know the solution,please help me.

Thanks in advance.

share|improve this question

closed as not a real question by casperOne Jun 14 '12 at 12:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 2 down vote accepted

You can do the next thing:

    //get the path of the sdcard and enter all the files to an array file
        File[] file = Environment.getExternalStorageDirectory().listFiles();  


        for (File f : file)
        {
            if (f.isDirectory()) { 
                 file[] innerFiles = f.listFiles();

                 for(int i=0; i< innerFiles.length;i++){
                   Log.i("Name", innerFiles[i].getPath() + "");
                 }
        }

            if (f.isFile()) { ... do stuff }
        }
share|improve this answer
hi,it gives like mnt/sdcard/DCIM.but ieant to later DCIM like..mnt/sdcard/DCIM/Camera or mnt/sdcard/DCIM/100MEDIA.If know how to get this please help me:Thanq – kiran Jun 13 '12 at 9:34
@kiran Updated my answer. – Ofir A. Jun 13 '12 at 9:40
Thanq verymuch dude,it helps me. – kiran Jun 13 '12 at 9:47

You can use FileFilter for seaching all the directory from root. String dirName= "mnt/sdcard/";

    File dir = new File(dirName);

    File[] files = (new File(dirName)).listFiles();

    // This filter only returns directories
    FileFilter dirFilter = new FileFilter() {
        public boolean accept(File dir) {
            return dir.isDirectory();
        }
    };

    files = dir.listFiles(dirFilter);

    for (int i=0; i<files.length; i++) {
        if(files[i].getAbsolutePath().contains("tempfolder"))
          System.out.println("directory path : " + files[i].getAbsolutePath());
    }
share|improve this answer

please Check out this. I think it help you.

    File file[] = Environment.getExternalStorageDirectory().listFiles();  


    for (File f : file)
    {
        if (f.isDirectory()) { 

            Log.i("Name", f.getPath()+"");
        }
    }

Thanks

share|improve this answer

Try this code:

for (File file : folder.listFiles()) {
    if (file.isFile()) {
       Log.v("Folders on the sd card are:  ", folder.getName() + " in path " + folder.getAbsolutePath());
    }
share|improve this answer
1  
@kiran Please, nobody is working here for you and Stackoverflow is not code repository. – Paresh Mayani Jun 13 '12 at 9:29

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