Compressing files

  • Thread starter Thread starter Francisco K. do Amaral
  • Start date Start date
F

Francisco K. do Amaral

Hi,

I would like to know if there is a API that compress and extract files in
..NET framework.

Thanks.
 
Exports from ZIPFLDR.dll
6 exported name(s), 6 export addresse(s). Ordinal base is 1.
Not sorted
RVA Ord. Hint Name
-------- ---- ---- ----
000056CF 6 0000 RouteTheCall
00005836 1 0001 DllCanUnloadNow
00003E7D 2 0002 DllGetClassObject
00005AD2 3 0003 DllRegisterServer
000058F5 4 0004 DllUnregisterServer
00005ACA 5 0005 RegisterSendto


I really don't think that you can get anything useful out of this.
RouteTheCall will just display the UI, and the other functions are just
normal maintenance. You could use CoGetClassObject() to get the pointer to
the interface of the COM object, however the massive use of platform invoke
plus the lack of documentation doesn't make it a viable solution.

Gabriele
 
Why should I use this when there is a class in J# for zipping files that I
can reuse in any .NET program?
 
Back
Top