Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / desktop / WinForms

Listing and Working with Files in Archives

2.86/5 (6 votes)
22 Jun 2007CPOL 1   531  
This article describes how to use CAKE3, which is a wrapper component for many archiver DLLs,
Screenshot - Cakcmd.gif

Introduction

This article describes how to use CAKE3, which is a wrapper component for many archiver DLLs, including SharpZipLib(Zip), Sqx Archiver(Sqx), XacRett(Wide range), Unlha(Lha,Lzh), Unarj(Arj), 7-zip32(7z), Unace(ace), Unrar(rar) archives.

Background

There are some zip/unzip solutions for C#, but I need more archive types support. I believe that there will be no native support for most other archives types anytime soon, so the only method is to call Win32 DLLs...

Using the Code

All archive operations can be done via the main unit: Cakdir3, you should create a new instance of Cakdir3 if you wanted to access a new archive.

You should download the archiver DLLs first, detailed path can be found in Dlls.txt.

You can view the help file here.

Listing Files

C#
Cakdir3 c3 = new Cakdir3(archiveName);
c3.OnMessage += new MessageEventHandler(OnMessage);
c3.List(mask);
                                    
foreach (ContentType ct in c3.Archive_Contents)
  Console.WriteLine(ct.fileName);

//Utils.GetSmallFileIcon - Return small file icon of a file (exist or not).
//Utils.GetLargeFileIcon - Return large file icon of a file (exist or not).

Testing Files

C#
Cakdir3 c3 = new Cakdir3(archiveName);
c3.OnMessage += new MessageEventHandler(OnMessage);
c3.Test();

Compressing Files

C#
Cakdir3 c3 = new Cakdir3(archiveName);
c3.OnMessage += new MessageEventHandler(OnMessage);
c3.AddOptions.addFile = new string[] { "C:\file2Add" }
c3.Add(); //Use c3.AddToFolder if you want to add to specific folder in archive.

Decompressing Files

C#
Cakdir3 c3 = new Cakdir3(archiveName);
c3.OnMessage += new MessageEventHandler(OnMessage);
c3.ExtractOptions.extractFolder = "c:\path2extract";
c3.ExtractOptions.extractItem = new string[] { "*" };
c3.Extract();

Deleting Files

C#
Cakdir3 c3 = new Cakdir3(archiveName);
c3.OnMessage += new MessageEventHandler(OnMessage);
c3.DeleteOptions.deleteFile = new string[] { "/file2del" };
c3.Delete();  

Points of Interest

I wrote this component for my next freeware archiver. I don't know what other use can be made of this. Drop me an email if you find one.

History

License

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