How to read each revision of file using sharpsvn c

2020-04-07 03:15发布

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............

标签: c# sharpsvn
1条回答
时光不老,我们不散
2楼-- · 2020-04-07 03:38

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(...);
                 });
    }
}
查看更多
登录 后发表回答