could you help me about this?.When the users opens the app or install the app the process is to automatically move files in a certain folder. Guys, any suggestion, codes or links are helpful and appreciated ... :D
Thanks in advance.
could you help me about this?.When the users opens the app or install the app the process is to automatically move files in a certain folder. Guys, any suggestion, codes or links are helpful and appreciated ... :D
Thanks in advance.
For move file you can use below code:
File from = new File(Environment.getExternalStorage().getAbsolutePath()+"/folder1/file.ext");
File to = new File(Environment.getExternalStorage().getAbsolutePath()+"/folder2/file.ext");
from.renameTo(to);
just use this method for folders that be on same mount point.