I want to pick image from gallery and copy it in to other folder in SDCard.
Code to Pick Image from Gallery
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, REQUEST_CODE_CHOOSE_PICTURE_FROM_GALLARY);
I get content://media/external/images/media/681 this URI onActivityResult.
I want to copy the image,
Form path ="content://media/external/images/media/681
To path = "file:///mnt/sdcard/sharedresources/ this path of sdcard in Android.
How to do this?