I have an application that capture face image and store it in a folder. How can I manually add the images that I want inside the folder using drawable resource? The folder path is
mPath = getFilesDir() + "/faceimages/";
So basically how can I make png image in res/drawable/*.png
available in faceimages folder?
Or is there any other way around I can make my png files available in the folder?