如何使用SharpSVN以编程方式将文件夹添加到忽略列表?

编辑:尝试:
这是我尝试过的

svnClient.GetProperty(new SvnUriTarget("svn://svn.foo.com/" + DatabaseName + "/"), SvnPropertyNames.SvnIgnore, out ignores);
ignores += " Artifacts";
var args = new SvnSetPropertyArgs() { BaseRevision = ???, LogMessage = "update ignore list" };
svnClient.SetProperty(new Uri("svn://svn.foo.com/" + DatabaseName + "/"), SvnPropertyNames.SvnIgnore, ignores, args);


但是我不知道如何获取BaseRevision(我可以手动获取它,并且可以正常工作,但是我尝试过的所有GetProperty组合似乎都没有给我。)

解决方案:基于伯特的答案

SvnGetPropertyArgs getArgs = new SvnGetPropertyArgs(){};
string ignores = "Artifacts";
string result;
if(svnClient.GetProperty(new SvnUriTarget("svn://svn.foo.com/" + ProjectName + "/trunk/"), SvnPropertyNames.SvnIgnore,out result))
{
    ignores = result + " Artifacts"; //TODO: check for existing & tidy formatting.
}
svnClient.SetProperty(UncPath.TrimEnd('\\'), SvnPropertyNames.SvnIgnore, ignores);
SvnCommit(svnClient);

最佳答案

忽略列表存储在父目录的“ svn:ignores”属性中,该目录包含要忽略的文件/目录。 (请参见Subversion booksvn help propset

因此,要添加一项,您必须获取原始属性值(如果存在),然后添加用空格分隔的多余项。 SvnClient上的此功能是GetProperty和SetProperty()。

09-04 15:49