I'm buiding an app that what it does is scan the root folder

Assets

and then it searches if there is any folder inside... the purpose of this is to save all the text files routes in database..the database will contain the textfile name and the route.

this is part of the code:

private void seedData(int indent, File file) throws IOException {
        if (file.isDirectory()) {
          File[] files = file.listFiles();
          for (int i = 0; i < files.length; i++)
            {
              seedData(indent + 4, files[i]);
              path+=files[i].getPath();
            }

        }
        else{
            db.execSQL("insert into "+TABLE+" (title, url) values ('"+
                    file.getName().substring(0, file.getName().length()-4)+"', '"+file.getPath()+"');");
        }

      }

but in normal Java I just create a File with the route and then send it to the method like this: seedData(1, new File("/root")); .So my question is, how do I do this in Android? or to be more precise, how do I create a file that points to the root folder that is located in assets so it gets "scanned" by my code. I already tried seedData(1, new File("/assets/root")); but it just didnt work. Any help would be much appreciated.

Note: No, I cannot save the paths manually since there is over 3k text files in all those subfolders.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

The problem here is that the assets are not files. The Android equivalent of your above method would be something like this:

private void seedData(int indent, String path, AssetManager mgr)
    throws IOException
{
    String[] list = mgr.list(path);
    if (list.length > 0) {
        // path is a directory with something in it
        for (String item : list) {
            seedData(indent + 4, path + "/" + item, mgr);
        }
    } else {
        // path is either an empty directory or a file
        // unfortunately, Android makes it hard to distinguish
        String name = path.substring(path.lastIndexOf('/') + 1);
        db.execSQL("insert into "+TABLE+" (title, url) values ('"
                +name.substring(0, name.length()-4)+"', '"
                +path+"');");
    }
}

You would call this from your Activity with

seedData(0, "root", getAssets());

For reference, the URI format for assets in the "root" folder is file:///android_asset/root/....

link|improve this answer
the only thing that it seems is that if there is an empty directory it will be "pushed" into the database right? :/ – Raykud Jan 3 at 19:26
@Raykud - Perhaps you could avoid registering empty directories by checking the name itself; if it doesn't have an extension, it's an empty directory instead of a file. Otherwise, I don't know a way to avoid the problem. – Ted Hopp Jan 3 at 23:02
feedback

Your Answer

 
or
required, but never shown

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