"the destination directory '" + wcDir.getAbsolutePath() + "' already exists!");
}
wcDir.mkdirs();
try {
out().println( wc.checkout(SVNURL.parseURIEncoded(uri), SVNRevision.HEAD, wcDir, true) );
} catch (SVNException svne) {
throw new CommandException(
"error while checking out a working copy for the location '" + uri + "'", svne);
}
}