Creating Delta Diff Patches of large Binary Files in C#

前端 未结 3 1818
独厮守ぢ
独厮守ぢ 2021-02-06 11:34

I looking for a way to create Delta Diff Patches of Large Binary Files (VMWare Virtual Disk Files). Is there an implementation in C# or any useful methods in the the .NET Framew

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-06 12:01

    There's nothing built into the framework to do this.

    You're going to have to look for 3rd party solutions, commercial or free, or write your own.

    A common algorithm is the VCDiff algorithm, which is used by quite a large number of products.

提交回复
热议问题