sharpsvn

SharpSvn: The proper way to restore a deleted file

Hi, Please consider the following scenario: 1. User A creates and commits a file (lets say file1.txt). 2. User B deletes this file from the repository. 3. User A has the file in his local working copy and would like to restore it. The user finds that out after an Update() was done. What is the proper way to achieve this? So far I'v...

Subversion connection with C # in Visual Studio 2010

I am using to connect the library with subversion Sharpsvn but I always get an error. The code is as follows: SvnClient client = new SvnClient(); string targetSource = "http://xxxxxxx/svn/xxxx/xxxx/"; string uriDest = "C:/Documents and Settings/user/My documents/Jesus/project/test"; client.CheckOut(new Uri(targetSource), uriDest, Svn...

Size of a subversion directory

I have a project that takes a checkout in a directory under subversion by sharpsvn. I want to do now is to show the checkout process in a progress bar, but for that I need to know the size of the board, what property or decision of the library I would return the size of the directory? Thanks in advance! ...

Get permission for an SVN folder using SharpSVN

I have have a repository, for example "http://svnserver/repository". Users have different permissions in the folders: "http://svnserver/repository/folder1" or "http://svnserver/folder2". How can I get the permission (read only or read and write) of the user logged in for a specific folder? ...