FYI, после загрузки SvnQuery и SvnFind из http://svnquery.tigris.org/ вы можете включить SvnQuery.dll в проект C # и написать свой собственный графический интерфейс:
using System.Collections.Generic;
using SvnQuery;
//...
public string wad = @"C:\Data\Download\SvnQuery\App\svn.idx";
public ICollection<string> GetSvnFolderList()
{
string search = "/";
var idx = new SvnQuery.Index(wad);
var res = idx.Query(search);
IDictionary<string, int> lst = new Dictionary<string, int>();
foreach (var item in res.Hits)
{
string folder = item.Path.Substring(0, item.Path.LastIndexOf("/"));
lst[folder] = 1;
}
return lst.Keys;
}