Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my android application i want to copy the media images to another folder(in my below code i try to copy picture from "/mnt/sdcard/DCIM/Camera/my_photo.jpg" to "/mnt/sdcard/PortFolio/MyGallery/ . I tried this with the following code but it doesn't work. Someone help me out of this??? Is there any other way possible??

File sd = Environment.getExternalStorageDirectory();
            File data = Environment.getDataDirectory();
            if (sd.canWrite()) {
                String sourceImagePath= "/mnt/sdcard/DCIM/Camera/my_photo.jpg";
                String destinationImagePath= "/mnt/sdcard/PortFolio/MyGallery/";
                Log.d("destinationImagePath", ""+destinationImagePath);
                File source= new File(data, sourceImagePath);
                File destination= new File(sd, destinationImagePath);
                Log.d("before copying", "");
                if (source.exists()) {
                    FileChannel src = new FileInputStream(source).getChannel();
                    FileChannel dst = new FileOutputStream(destination).getChannel();
                    dst.transferFrom(src, 0, src.size());
                    src.close();
                    dst.close();
                }
share|improve this question

migrated from android.stackexchange.com Nov 30 '11 at 13:43

1 Answer

up vote 1 down vote accepted

sd already contains /mnt/sdcard. You are actually trying to open /mnt/sdcard/mnt/sdcard/DCIM/Camera/my_photo.jpg. Remove /mnt/sdcard from sourceImagePath and destinationImagePath. You would probably also need to create the PortFolio/MyGallery folder first.

Starting API level 8, you can also use this to get the default pictures folder:

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);

And last but not least, make sure you have permission to access the SD card.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.