Question

is there a way to get full path of repository from an svn object? when i use .path or .pathRepository method i get only relative path of the file

Was it helpful?

Solution

SvnClient has a method GetRepositoryRoot which gives you the repository root URL. You can then combine this with the relative path of the file you get from .pathRepository.

OTHER TIPS

To get the the full uri to a file, use:

SvnInfoEventArgs info;
client.GetInfo(workingCopyPath, out info);
Console.WriteLine(info.Uri);

The repository root:

Console.WriteLine(info.RepositoryRoot);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top