Back to project page SEP_project.
The source code is released under:
GNU General Public License
If you think the Android project SEP_project listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package cse.sep.mihil.bridgemanagementhelper; /*from w w w.jav a 2 s .c o m*/ import java.io.File; import android.os.Environment; public final class BaseAlbumDirFactory extends AlbumStorageDirFactory { // Standard storage location for digital camera files private static final String CAMERA_DIR = "/dcim/"; @Override public File getAlbumStorageDir(String albumName) { return new File ( Environment.getExternalStorageDirectory() + CAMERA_DIR + albumName ); } }