I have a PNG file in a folder, I want to copy this file to another folder. Is there a easy way to do this ?
Example:
//Creating PNG
File file = new File(Environment.getExternalStorageDirectory()
+ File.separator+"/S_Temp/temp_"+formattedDate+".png");
FileOutputStream out = new FileOutputStream(file);
view.mBitmap.compress(Bitmap.CompressFormat.PNG,100, out);
So, I have the PNG in the SD card in the folder "S_Temp", now I want to copy this file to a new folder in the SD card itself, say "S".
Thanks in advance
Happy Coding