标签: c# compression lz4
我需要压缩目录及其子目录和文件。首先,我尝试使用原生ZipFile.CreateFromDirectory,但速度很慢。所以我发现LZ4是快速压缩算法,也发现了c#port lz4net。但是我很难找到使用lz4net进行压缩和解压缩的任何教程 Compression using LZ4Net(这是我在SO上找到的唯一有用的) 那么如何使用lz4net压缩目录?
ZipFile.CreateFromDirectory
lz4net