Android Log debugLsDir(String dir)

Here you can find the source of debugLsDir(String dir)

Description

debug Ls Dir

Declaration

public static void debugLsDir(String dir) 

Method Source Code

//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);
        }/*from   w  w  w .ja va2  s .c  o m*/
    }
}

Related

  1. write(String path, String log)
  2. LogE(String tag, String message)
  3. debug(Object msg)
  4. debug(Object msg, Object msg2)
  5. debug(Throwable e)
  6. writeLog(String msg)