extracting CAB file throwing error while running as linux container

314 Views Asked by At

I am using SevenZipExtractor (https://www.nuget.org/packages/SevenZipExtractor/) to extract CAB files using below code, it's works on my windows machine,

using (ArchiveFile archiveFile = new ArchiveFile(@"C:\TEMP\x.cab"))
        {
            foreach (Entry entry in archiveFile.Entries)
            {
                Console.WriteLine(entry.FileName);

                // extract to file
                entry.Extract(entry.FileName);

            }
        }

While I am pushing this to Linux container, it's throws below error,

This seems the NuGet package using some internal Windows DLL.

Question: can I make some docker file change and make it running on Linux container?

> ❯ docker run -i test

Unhandled exception. SevenZipExtractor.SevenZipException: Unable to initialize SevenZipHandle ---> System.DllNotFoundException: Unable to load shared library 'kernel32.dll' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: libkernel32.dll: cannot open shared object file: No such file or directory at SevenZipExtractor.Kernel32Dll.LoadLibrary(String lpFileName) at SevenZipExtractor.SevenZipHandle..ctor(String sevenZipLibPath) at SevenZipExtractor.ArchiveFile.InitializeAndValidateLibrary() --- End of inner exception stack trace --- at SevenZipExtractor.ArchiveFile.InitializeAndValidateLibrary() at SevenZipExtractor.ArchiveFile..ctor(String archiveFilePath, String libraryFilePath) at ConsoleDocker.Program.Main(String[] args) in /src/Program.cs:line 33

1

There are 1 best solutions below

6
On

https://www.nuget.org/packages/SevenZipExtractor/ C# wrapper for 7z.dll (included)

You trying to use windows dll under linux.

Instead, you can use https://www.7-zip.org/sdk.html - there is pure c# code, not .dll wrapper