Here you can find the source of getExtStoragePubDir(String dirName, String dirType)
public static File getExtStoragePubDir(String dirName, String dirType)
//package com.java2s; import android.os.Environment; import android.util.Log; import java.io.File; public class Main { public static File getExtStoragePubDir(String dirName, String dirType) { File path = new File( Environment.getExternalStoragePublicDirectory(dirType), dirName);/*from ww w . ja va2 s.c o m*/ if (!path.mkdirs()) { Log.e("ExtStorageUtils", "Directory not created"); } return path; } }