I have created a directory in android internal storage using following lines:
File directory = getDir("template", Context.MODE_PRIVATE);
I need to add some files in this 'template' directory from sdcard, what is the way to achieve this?
Any help is appreciated..
Thanks