I'm trying to make a photo and store it on the device.
For the path, i'm using this:
File mediaStorageDir = new File(Environment.getExternalStorageDirectory() + File.separator + "DCIM", "nameFolder");
And the path for each image that I store, the path is this:
/storage/emulated/0/DCIM/nameFolder/IMG_20150513_125555.jpg
Ok, it seems that works fine.
But, when I try to see the photo via USB, there is no exist the new folder
However, if I accede via DDMS, I can find the folder and the image in this path:
mnt/shell/emulated0/DCIM/nameFolder
What is the problem?