SharpSvn 创建目录

发布于 2024-07-30 07:47:38 字数 699 浏览 8 评论 0原文

我正在尝试创建一个可以自动化项目设置的网站。 我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨落画卷 2024-08-06 07:47:39

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文