Android external sdCard DCIM folder path

早过忘川 提交于 2019-11-29 14:20:01

Try out with

String m_path = Environment.getExternalStoragePublicDirectory(
            Environment.DIRECTORY_DCIM).getAbsolutePath();

For the more details about the storage file structure you check my Blog

The answer is here in the API Guide: http://developer.android.com/guide/topics/data/data-storage.html#filesExternal

The basic steps are: 1. Check the storage state (if it exists) 2. Get the storage Path 3. Go further in a directory you want 4. Make a folder, read a file, write a file, etc. That part is up to you.

This is taken from the docs:

public File getAlbumStorageDir(String albumName) {
    // Get the directory for the user's public pictures directory.
    File file = new File(Environment.getExternalStoragePublicDirectory(
            Environment.DIRECTORY_PICTURES), albumName);
    if (!file.mkdirs()) {
        Log.e(LOG_TAG, "Directory not created");
    }
    return file;
}

Got the same problem using a Samsung device. Using the Google Photos App I was able to identify the real location of my SD-Card storage: "/storage/837D-10EB/DCIM" as opposed to the String given by the Environment framework, which is "/storage/emulated/0/DCIM". I don't know if this is a Samsung "problem" or if it has something to do with Android settings. Anyway, it would be good to know if there is an alternative way of finding the SD-Card Camera storage. I know there has to be one as the Google Photos app also finds those photos without any problem.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!