Do all Android phones with a built-in camera use a folder called "DCIM" to store captured images?

I am developing an application that uses the default camera application for a phone to capture an image, and then allows the user to do some basic editing.

I am using the following snippet ...

Intentintent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
imageCaptureIntent.putExtra(MediaStore.EXTRA_OUTPUT,*<file>*);
startActivityForResult(intent, TAKE_PHOTO_CODE);

I want the captured image to be saved in a place compatible with the backup camera application. Is it possible to use the DCIM folder and assume that all phones will use this location?

0
source share
2 answers

, Android DCIM. - Android , .

DCIM, , - " ", .

+3

​​, . Droid Incredible 8 , , , .

0

All Articles