FileChannel src = new FileInputStream(source).getChannel();
FileChannel dst = new FileOutputStream(destination).getChannel();
dst.transferFrom(src, 0, src.size());
src path is --> /storage/emulated/0/Pictures/IMG_20210630_182546.jpg
this is destination folder --> /storage/emulated/0/Android/data/com.tp.qa/files/temp
destination image name --> /gallery1625059659.jpg
Is there some problem in copying file from the above source?