Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.io.File;

import android.util.Log;

public class Main {
    public static void debugLsDir(String dir) {
        File directory = new File(dir);
        Log.d("quran_dbg", directory.getAbsolutePath());

        if (directory.isDirectory()) {
            String[] children = directory.list();
            for (String s : children)
                debugLsDir(dir + File.separator + s);
        }
    }
}