logs2.copyTo(logs1);
System.err.println("Exists #1: " + logs1.exists());
System.err.println("Exists #2: " + logs2.exists());
logs1.deleteRecursively();
logs2.deleteRecursively();
System.err.println("Exists #1: " + logs1.exists());
System.err.println("Exists #2: " + logs2.exists());
} finally {
connection.close();
}