Is it possible to copy a folder present in sdcard to another folder present the same sdcard programmatically ??
If so, how to do that?
To move files or directories, you can use File.renameTo(String path) function
File.renameTo(String path)
File oldFile = new File (oldFilePath); oldFile.renameTo(newFilePath);