Click here to Skip to main content
15,881,281 members
Articles / Programming Languages / Shell
Tip/Trick

Easily Zip / Unzip Files using Windows Shell32

Rate me:
Please Sign up or sign in to vote.
4.94/5 (45 votes)
22 Oct 2013CPOL1 min read 758.8K   66   151
Easily zip / unzip files using Windows Shell32

(NOTE: The code has been updated for better compatibility on Windows Vista and 8.)

Introduction

If you want to zip / unzip files and folders without using third-party libraries, and you need a simple way to do it, then the Windows Shell32 is your choice.

The code is written with Visual Basic 2010 using .NET Framework 2.0 (running on Windows 7 x64), but it's simple and can be easily converted to any other language (like C#).

The Code

The first step is to create an empty ZIP file. Then, by using the CopyHere method, the files can be copied (or compressed) into the ZIP file. Also, using the same method, we can copy (or extract) the compressed files.

VB.NET
Public Class Form1
 
    Dim outputZip As String = "output zip file path"
    Dim inputZip As String = "input zip file path"
    Dim inputFolder As String = "input folder path"
    Dim outputFolder As String = "output folder path"
    
    'Declare the shell object
    Dim shObj As Object = Activator.CreateInstance(Type.GetTypeFromProgID("Shell.Application"))

    Sub Zip()

        'Lets create an empty Zip File .
        'The following data represents an empty zip file.
        Dim startBytes() As Byte = {80, 75, 5, 6, 0, 0, 0, 0, 0, 0, 0, _
                                     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
        'Data for an empty zip file.

        FileIO.FileSystem.WriteAllBytes(outputZip, startBytes, False)
        'We have successfully created the empty zip file.

        'Declare the folder which contains the items (files/folders) that you want to zip.
        Dim input As Object = shObj.NameSpace((inputFolder))

        'Declare the created empty zip file.
        Dim output As Object = shObj.NameSpace((outputZip))

        'Compress the items into the zip file.
        output.CopyHere((input.Items), 4)

    End Sub

    Sub UnZip()

        'Create directory in which you will unzip your items.
        IO.Directory.CreateDirectory(outputFolder)

        'Declare the folder where the items will be extracted.
        Dim output As Object = shObj.NameSpace((outputFolder))

        'Declare the input zip file.
        Dim input As Object = shObj.NameSpace((inputZip))

        'Extract the items from the zip file.
        output.CopyHere((input.Items), 4)

    End Sub
 
End Class

In the CopyHere method, option 4 was used, but it seems that it's actually ignored. Please refer to this page for more details: http://msdn.microsoft.com/en-us/library/windows/desktop/bb787866(v=vs.85).aspx.

Note that when using the methods NameSpace and CopyHere, the parameters were passed through additional parentheses. For some reason, it seems that there's a problem passing the variables themselves, therefore, the parentheses were used to pass "New" parameters which are created from and equivalent to the original ones. Otherwise, you would receive errors.

(Thanks to Thomas Tsigkonis for reporting the issues he faced on Windows 8.)

For those wondering if this method also compresses files (reduces their size): Yes! It does.

Also, you need to know that since the zipping/unzipping operations are carried-out by the Shell32 itself, you do not have a direct control on them. But, there are couple of ways to monitor the process, some of them are mentioned in the comments below.

At the end, this is an easy and fast-to-implement method for adding zipping / unzipping capabilities to your Windows application.

Best regards!

License

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


Written By
Student
Iraq Iraq
Hello Everyone,

I didn't study programming at academic levels, but rather learned it by myself at home.
From time to time i will try to post some code that's rarely being used and it does prove useful.

Please anytime if you need help, don't hesitate to contact me. I'll be glad to help you out!

Best Regards

Comments and Discussions

 
GeneralRe: Error Code in Shell32 Pin
Bashar Tahir13-Sep-14 20:06
Bashar Tahir13-Sep-14 20:06 
GeneralRe: Error Code in Shell32 Pin
Thomas Tsigkonis14-Sep-14 5:42
Thomas Tsigkonis14-Sep-14 5:42 
GeneralRe: Error Code in Shell32 Pin
Bashar Tahir14-Sep-14 6:13
Bashar Tahir14-Sep-14 6:13 
GeneralRe: Error Code in Shell32 Pin
Thomas Tsigkonis14-Sep-14 14:33
Thomas Tsigkonis14-Sep-14 14:33 
GeneralRe: Error Code in Shell32 Pin
Bashar Tahir14-Sep-14 19:53
Bashar Tahir14-Sep-14 19:53 
GeneralRe: Error Code in Shell32 Pin
Thomas Tsigkonis15-Sep-14 6:49
Thomas Tsigkonis15-Sep-14 6:49 
GeneralRe: Error Code in Shell32 Pin
Bashar Tahir15-Sep-14 10:18
Bashar Tahir15-Sep-14 10:18 
GeneralRe: Error Code in Shell32 Pin
Thomas Tsigkonis15-Sep-14 12:35
Thomas Tsigkonis15-Sep-14 12:35 
GeneralRe: Error Code in Shell32 Pin
Bashar Tahir15-Sep-14 20:57
Bashar Tahir15-Sep-14 20:57 
GeneralRe: Error Code in Shell32 Pin
Thomas Tsigkonis16-Sep-14 10:10
Thomas Tsigkonis16-Sep-14 10:10 
QuestionC# code to unzip !! Pin
oruganti125-Feb-14 9:43
oruganti125-Feb-14 9:43 
AnswerRe: C# code to unzip !! Pin
Bashar Tahir5-Feb-14 18:00
Bashar Tahir5-Feb-14 18:00 
QuestionSmart and brilliant! Pin
Gun Gun Febrianza16-Nov-13 7:10
Gun Gun Febrianza16-Nov-13 7:10 
AnswerRe: Smart and brilliant! Pin
Bashar Tahir17-Nov-13 1:34
Bashar Tahir17-Nov-13 1:34 
GeneralMy vote of 5 Pin
Alan Tuscano16-Jul-13 21:15
Alan Tuscano16-Jul-13 21:15 
GeneralRe: My vote of 5 Pin
Bashar Tahir17-Jul-13 4:28
Bashar Tahir17-Jul-13 4:28 
QuestionEasily zip / unzip files using Windows Shell32 Pin
Alan Tuscano15-Jul-13 23:46
Alan Tuscano15-Jul-13 23:46 
AnswerRe: Easily zip / unzip files using Windows Shell32 Pin
Bashar Tahir16-Jul-13 4:32
Bashar Tahir16-Jul-13 4:32 
GeneralRe: Easily zip / unzip files using Windows Shell32 Pin
Alan Tuscano16-Jul-13 21:14
Alan Tuscano16-Jul-13 21:14 
GeneralRe: Easily zip / unzip files using Windows Shell32 Pin
Bashar Tahir17-Jul-13 4:23
Bashar Tahir17-Jul-13 4:23 
QuestionEmpty Output Pin
Member 948812611-Jun-13 0:19
Member 948812611-Jun-13 0:19 
AnswerRe: Empty Output Pin
Bashar Tahir11-Jun-13 2:24
Bashar Tahir11-Jun-13 2:24 
AnswerRe: Empty Output Pin
Bashar Tahir11-Jun-13 2:27
Bashar Tahir11-Jun-13 2:27 
GeneralRe: Empty Output Pin
Member 948812611-Jun-13 2:51
Member 948812611-Jun-13 2:51 
GeneralRe: Empty Output Pin
Bashar Tahir11-Jun-13 6:45
Bashar Tahir11-Jun-13 6:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.