0

我正在使用sharpsvn库,我想做一个切换,但它一直给我以下错误:

“此参数不是有效路径。指定了 Uri。”

我检查了路径是否正常并且路径是否良好任何想法有什么问题?

var configpath2 = "http://website.com/svn/CMS/trunk/Configuration";

teststring = localpath + @"\trunk\Configuration\CMS";
svnClient.Switch(new Uri(teststring).ToString(), new SvnUriTarget(new Uri(configpath2)));
4

1 回答 1

2

一些相关链接:

  1. http://docs.sharpsvn.net/current/html/M_SharpSvn_SvnClient_Switch_1.htm
  2. http://docs.sharpsvn.net/current/html/Overload_SharpSvn_SvnClient_Switch.htm

正如我通过阅读上述页面所了解的那样,您必须stringSwitch. 试试这个:

svnClient.Switch(teststring, new SvnUriTarget(new Uri(configpath2)));
于 2013-04-11T13:55:11.823 回答