SSIS Extract Zip file using System.IO.Compression
The System.IO.Compression namespace contains the following types for compressing and decompressing files and streams. You can also use these types to read and modify the contents of a compressed file: To get more about the System.IO.Compression you may visit the detail page from MSDN website. https://msdn.microsoft.com/en-us/library/ms404280(v=vs.110).aspx This demo is for those ETL developers want to use .net build-in compression library and to focus on their main task instead of digging through the internet and spending time searching for sample code using other third party library like 7zip and WiRar . Please do take note that your production Integration Services Server must have .Net Framework 4.5 or later. The following demo will show you how to use .net System.IO.Compression library to help you extract zip file in your SSIS project and for this short demo we will only use " ExtractToDirectory " method . Create working directory for yo