ActiveXZip Help - Extracting zip files

G

Guest

Hi all,
I found this code to unzip a file automatically in an asp.net application...

Dim xxx As New ActiveXZip
xxx.open(zipfile:=strfilepath)
xxx.extract(Item:="*.*", extractDir:="c:\test", password:="")
xxx.close()
Kill(strfilepath)

The only problem is that it will only work on the files inside a zipped file
(*.*)... but my zipped file is a folder , full of other folder, full of
files...
Is there a (*.*) type of thing which means folders, not just files???
thanks
 
K

Kevin Spencer

I think you'll need to ask the authors of ActiveXZip. It's their interface.
They developed it. This is a Microsoft newsgroup, where you can get all
kinds of help with Microsoft software and tools. ActiveXZip is not a
Microsoft product. Here is a URL where some documentation for this product
exists (Tip:I Googled it):

http://www.hdse.org/activexzip/documentation.htm

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top