I need to create a folder in svn using svnkit jar. I tried with the following code
String url = Config.svnurl + "/" + qcuser + "/" + "Completedjobs";
try {
SVNRepository repository = SVNRepositoryFactory.create(SVNURL.parseURIDecoded(url));
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager(Config.svnusername, Config.svnuserpwd);
repository.setAuthenticationManager(authManager);
} catch (SVNException e) {
e.printStackTrace();
System.exit(1);
}
Any idea plz suggest