Here you can find the source of getSdcardFilesDir(Context c)
public static String getSdcardFilesDir(Context c)
//package com.java2s; import android.content.*; import java.io.*; public class Main { public static String getSdcardFilesDir(Context c) { return c.getExternalFilesDir(null).getAbsolutePath() + File.separator; }/*from w w w.j a v a 2s . c o m*/ }