* @since 1.2.0, SVN 1.5.0
*/
public void doHotCopy(File srcRepositoryRoot, File newRepositoryRoot) throws SVNException {
FSFS fsfs = SVNAdminHelper.openRepository(srcRepositoryRoot, false);
try {
FSHotCopier copier = getHotCopier();
copier.runHotCopy(fsfs, newRepositoryRoot);
} finally {
SVNAdminHelper.closeRepository(fsfs);
}
}