hi
howto extract One file(my own file) from zip archive.
(dont use winzip.exe)
example:
i want to extract androidmanifest.xml from attached zip file.
thanks.
Printable View
hi
howto extract One file(my own file) from zip archive.
(dont use winzip.exe)
example:
i want to extract androidmanifest.xml from attached zip file.
thanks.
you can use a windows shell object to unzip fileschange paths to suitvb Code:
Set sh = CreateObject("shell.application") Set dest = sh.namespace("C:\test") dest.copyhere sh.namespace("c:\temp\file.zip").parsename("androidmanifest.xml")
can u be more specific please.. and what if what is being extracted is a folder? that has files
unlike other copy methods shell does not care it will just copy allQuote:
and what if what is being extracted is a folder? that has files
note shell object treats zip files like folders
specific about what, just change file and folder names to suitQuote:
can u be more specific please..
can you please be more specific about what you want to achieve?
i actually achieved it already with DotNetZip Library. You know about the method?
i do not use .net, so no, i do not knowQuote:
You know about the method?