File Helper
This file helper utility contains methods to make manipulating files easier from Java. Includes a method to move a file, even when it can't be renamed.
Example
Move the file "source.txt" to "destination.txt"
try {
FileHelper.move(
new File("source.txt"),
new File("destination.txt")
);
} catch (IOException iox){
iox.printStackTrace();
}