ネットワーク共有にあるSVNリポジトリの作業コピーのリポジトリURLを取得しようとしています:\\host\D\directory\
次のコードが実行されています。
SvnClient svnClient = new SharpSvn.SvnClient();
SvnInfoEventArgs svnInfo;
svnClient.GetInfo(SvnTarget.FromString("\\\\host\\D\\directory\\"), out svnInfo);
Uri repositoryUrl = svnInfo.Uri;
GetInfo()メソッドで次のエラーが発生しました。
'\host\D' does not exist
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: SharpSvn.SvnException: '\host\D' does not exist
スタックトレース:
[SvnException: '\host\D' does not exist]
[SvnInvalidNodeKindException: '\host\D' is not a working copy]
SharpSvn.SvnClientArgs.HandleResult(SvnClientContext client, SvnException error) +232
SharpSvn.SvnClientArgs.HandleResult(SvnClientContext client, svn_error_t* error) +80
SharpSvn.SvnClient.Info(SvnTarget target, SvnInfoArgs args, EventHandler`1 infoHandler) +443
SharpSvn.SvnClient.GetInfo(SvnTarget target, SvnInfoEventArgs& info) +117
エラーがいつ発生するか知っていますか、または SharpSvn で使用するより良い方法を知っていますか?