[android-developers] copy file from sdcard to Android package filesystem (/data/data/packagename/files/) ??/

2010-04-14 Thread Abhi
Hi Is it possible to copy a file located on the sdcard to a package's internal filesytem located at /data/data/packagename/files/ folder? Thanks, Abhi -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] copy file from sdcard to Android package filesystem (/data/data/packagename/files/) ??/

2010-04-14 Thread Mark Murphy
Abhi wrote: Is it possible to copy a file located on the sdcard to a package's internal filesytem located at /data/data/packagename/files/ folder? Yes, via standard Java I/O. Use getFilesDir() to find out where /data/data/packagename/files/ is for your application. -- Mark Murphy (a Commons