How can I unzip a 7z file with Outsystems 11? I have tried the zip extension but it didn't work. I can't find any other extension on forge that supports 7z files
Hello @Alessandro Bognetti,
Take a look at this component:
https://www.outsystems.com/forge/component-overview/20806/sevenzip-library-o11
I've made it, and test but im not sure if work for all your cases, like password 7zip file and so on..
Thanks Fabio! I'll try it and let you know!
@Fábio Vaz I've tested your solution but I coudn't extract any files. No message error appears and no exception is thrown.
I've understand the issue and was an error there, i've uploaded a new version this one i hope it works
tested the extract feature and it works,thank you!
You can also use PowerISO tool to extract data from zip file.
Hi Somit, I need to do it programmatically via Outsystems, so PowerISO is not a solution
Hi,
I couldn’t find a Forge component for unzipping .7z (7-Zip) files, but you can achieve this by building a custom extension in .NET and integrating it through Integration Studio.
You can find the LZMA SDK at https://www.7-zip.org/sdk.html. Using this SDK, you can build an extension with Integration Studio. A C# sample is also provided in the SDK for reference.