SharpSvn 创建目录
我正在尝试创建一个可以自动化项目设置的网站。 我想使用 SharpSVN 创建 SVN 目录。 这是我尝试过的:
SvnClient svnClient = new SvnClient();
svnClient.CreateDirectories(new[]
{
string.Format("svn://example.com/{0}/trunk/", ProjectName),
string.Format("svn://example.com/{0}/branches/", ProjectName),
string.Format("svn://example.com/{0}/tags/", ProjectName)
});
我收到此异常:System.ArgumentException,MESSAGE:此参数不是有效路径。 指定了 Uri 参数名称:路径
另外,我不知道在哪里输入了用户名和路径。 我想使用密码?
I'm trying to create a website that will automate project setup.
I want to create SVN directories using SharpSVN.
Here's what I tried:
SvnClient svnClient = new SvnClient();
svnClient.CreateDirectories(new[]
{
string.Format("svn://example.com/{0}/trunk/", ProjectName),
string.Format("svn://example.com/{0}/branches/", ProjectName),
string.Format("svn://example.com/{0}/tags/", ProjectName)
});
I get this exception: System.ArgumentException, MESSAGE: This argument is not a valid path. A Uri was specified Parameter name: paths
Also, I don't know where I put in the username & password I want to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SvnClient.RemoteCreateDirectories。 (并且不要忘记向 args 类添加日志消息,或处理客户端上的 Committing 事件)。
身份验证是通过 SvnClient.Authentication 上的帮助程序类处理的。 例如,您可以在该类上使用 .DefaultCredentials。 默认情况下,SharpSvn 会依赖您已经缓存的 Subversion 凭据。
You can use SvnClient.RemoteCreateDirectories. (And don't forget to add a log message to the args class, or to handle the Committing event on the Client).
Authentication is handled via the helper class on SvnClient.Authentication. E.g. you could use the .DefaultCredentials on that class. By default SharpSvn falls back on your already cached subversion credentials.