Java tutorial
//package com.java2s; //License from project: Apache License import java.io.File; import android.os.Environment; public class Main { /** * Determine the camera folder. There seems to be no Android API to work for real devices, so this is a best guess. * * @return the default camera folder. */ public static String getDefaultCameraFolder() { File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM); if (path.exists()) { File test1 = new File(path, "Camera/"); if (test1.exists()) { path = test1; } else { File test2 = new File(path, "100ANDRO/"); if (test2.exists()) { path = test2; } else { path = new File(path, "100MEDIA/"); } } } else { path = new File(path, "Camera/"); } return path.getAbsolutePath(); } }