Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can we create an SSIS package which allows to unzip all zip files in a folder and copy it to another folder?
Posted

1 solution

One way to do this is to create for example a console application which takes the necessary parameters (folders, zip-file etc) as parameters and unzips them. Then you can you Execute Process task to execute the console application.

Few references:
- http://msdn.microsoft.com/en-us/library/system.io.packaging.zippackage.aspx[^]
- http://msdn.microsoft.com/en-us/library/ms141166.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900