• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to move files from one directory to another using program?

Use a FileInputStream to read the file into an array of bytes, delete the file with the .delete() method, then write the file to the new location using a FileOutputStream.
 
Back
Top Bottom