5

如何使用 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);
4

1 回答 1

4

忽略列表存储在包含要忽略的文件/目录的父目录的 'svn:ignores' 属性中。(参见Subversion 书籍svn help propset

因此,要添加一个项目,您必须获取原始属性值(如果存在),然后添加用空格分隔的额外项目。SvnClient 上的函数是 GetProperty 和 SetProperty()。

于 2010-02-24T12:36:55.153 回答