how to unzip .7z file programmatically?
-
I have files in .7z format and need to unzip them to do further manipulation. is this .7z format the same as .zip format in algorithm?
diligent hands rule....
-
I have files in .7z format and need to unzip them to do further manipulation. is this .7z format the same as .zip format in algorithm?
diligent hands rule....
Maybe not. I happened to find a .7z file on my system today and I see that 7zip reports it as "Method = LZMA2:14". 7zip doesn't report a Method for a zip file I checked. File Explorer can open it, but it's possible it use 7zip to do so. I don't know, but 7zip was one of the first things I installed when I got this system.
-
I have files in .7z format and need to unzip them to do further manipulation. is this .7z format the same as .zip format in algorithm?
diligent hands rule....
LZMA SDK (Software Development Kit)[^] Article on CP (maybe too old): C# (.NET) Interface for 7-Zip Archive DLLs[^] And in worst case: Call the 7z commandline tool from your application ;)
-
LZMA SDK (Software Development Kit)[^] Article on CP (maybe too old): C# (.NET) Interface for 7-Zip Archive DLLs[^] And in worst case: Call the 7z commandline tool from your application ;)
0x01AA wrote:
Call the 7z commandline tool from your application
That's what I've done in the past.
-
I have files in .7z format and need to unzip them to do further manipulation. is this .7z format the same as .zip format in algorithm?
diligent hands rule....
Southmountain wrote:
is this .7z format the same as .zip format in algorithm?
Yes, it just zips data up into seven internal zip files inside a single archive. :rolleyes:
Jeremy Falcon
-
LZMA SDK (Software Development Kit)[^] Article on CP (maybe too old): C# (.NET) Interface for 7-Zip Archive DLLs[^] And in worst case: Call the 7z commandline tool from your application ;)
thanks a million:rose:
diligent hands rule....
-
Maybe not. I happened to find a .7z file on my system today and I see that 7zip reports it as "Method = LZMA2:14". 7zip doesn't report a Method for a zip file I checked. File Explorer can open it, but it's possible it use 7zip to do so. I don't know, but 7zip was one of the first things I installed when I got this system.
thanks for the info:rose:
diligent hands rule....