How to read each revision of file using sharpsvn client using c#?

坚强是说给别人听的谎言 提交于 2019-12-01 20:18:22

问题


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


回答1:


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(...);
                 });
    }
}


来源:https://stackoverflow.com/questions/1425732/how-to-read-each-revision-of-file-using-sharpsvn-client-using-c

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!