How to move a lastmodifiedfile from a folder to other folder in java?

When you get your lastModified file, just use this to copy to another folder:

File dest = new File("path/to/file");
FileUtils.copyDirectory(lastModifiedFile, dest);

import is import org.apache.commons.io.FileUtils;

Leave a Comment