How to read each revision of file using sharpsvn client using c# ? Not the revision numbers but the content of the file in each revisions............
            Asked
            
        
        
            Active
            
        
            Viewed 3,053 times
        
    1 Answers
3
            You can use SvnClient.FileVersions for this like described in a similar question
public void WriteRevisions(SvnTarget target, SvnRevision from, SvnRevision to)
{
    using(SvnClient client = new SvnClient())
    {
        SvnFileVersionsArgs ea = new SvnFileVersionsArgs 
            {
                Start = from,
                End = to
            };
        client.FileVersions(target, ea,
            delegate(object sender2, SvnFileVersionEventArgs e)
                {
                    Debug.WriteLine(e.Revision);
                    e2.WriteTo(...);
                 });
    }
}
        Community
        
- 1
 - 1
 
        Sander Rijken
        
- 21,376
 - 3
 - 61
 - 85