149150151152153154155
/** * * @param file */ public static void delete(File file) { new DeleteFileCommand(file).execute(); }
260261262263264265266267
*/ public static void move(File source, File target) { new FileCommandInvoker().command(new MakeFileCommand(target)) .command(new CopyFileCommand(source, target)) .command(new DeleteFileCommand(source)) .invoke(); }