Here you can find the source of listAssetFiles(Context context, String path)
public static String[] listAssetFiles(Context context, String path)
//package com.java2s; import android.content.Context; public class Main { public static String[] listAssetFiles(Context context, String path) { String[] list;//from ww w . j a va2 s . c o m try { list = context.getAssets().list(path); } catch (Exception e) { return null; } return list; } }