How to Copy Image File from Gallery to another folder programmatically in Android
问题 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