[原]使用SevenZipSharp出现“Can not load 7-zip library or internal COM error! Message: DLL file does

Posted 时间就是金钱

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[原]使用SevenZipSharp出现“Can not load 7-zip library or internal COM error! Message: DLL file does 相关的知识,希望对你有一定的参考价值。

如果你是从nuget上下载安装的SevenZipSharp库,当你写好相应代码,兴冲冲的启动程序进行测试时,以下画面会让你受到当头一棒:

image

究其原因,是因为SevenZipSharp只是native 7z库的C# Wrap,所以你要让程序能够正常运行,还需要有7z的运行时库(但诡异的是SevenZipSharp既没有自己附带,也没有写入依赖项)。

可以打开nuget,下载安装7z或7z.Libs,设置7z.dll为始终拷贝。然后再次启动程序。

如果依然出现这个错误,说明SevenZipSharp没有能够自动找到7z.dll,这时我们可以手动设置其路径,如:

if (IntPtr.Size == 4)
{
    SevenZipCompressor.SetLibraryPath(@"7z-x86.dll");
}
else
{
    SevenZipCompressor.SetLibraryPath(@"7z-x64.dll");
}

解压的设置同理。

以上是关于[原]使用SevenZipSharp出现“Can not load 7-zip library or internal COM error! Message: DLL file does 的主要内容,如果未能解决你的问题,请参考以下文章

SevenZipSharp - 压缩内存流

使用 SevenZipSharp 压缩多卷?

如何使用 SevenZipSharp 提取多卷 7z 文件?

如何使用 SevenZipSharp 创建压缩的 SFX 文件?

如何基本上用sevenzipsharp提取文件

SevenZipSharp - 如何使用 c# 将多个目录压缩成一个文件?