i want to pick image from Gallery in and copy it in to other Folder in SDCard.
Code to Pick Image from Gallary
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 ?