Search code examples
javasvnsvnkit

Last modied by detail for a file using SVNkit


Hi how to get the last modified by value for a file using SVNkit. Scenario : the file is updated from SVN and itr is available in local repo(working copy).


Solution

  •     SVNProperties props=new SVNProperties();
        repository.getFile(filePath,new Long(-1),props,null);
        String author=props.getSVNPropertyValue("svn:entry:last-author").toString();    
    

    is working fine.