Unzipping all through a directory structure?

N

Neil

Is there a simple method, and tool to use, that will allow me to extract
fully ALL files within a hierarchy of folders with zip files in them?
eg.. the Parent Directory has twenty subfolders, each of which have ten
sub-folders with several .zip files in each. Ideally I want to unzip all
the files within the lowest level folders, keeping the unzipped output at
that lowest level.

Any help appreciated.

Neil
 
Q

q_q_anonymous

Neil said:
Is there a simple method, and tool to use, that will allow me to extract
fully ALL files within a hierarchy of folders with zip files in them?
eg.. the Parent Directory has twenty subfolders, each of which have ten
sub-folders with several .zip files in each. Ideally I want to unzip all
the files within the lowest level folders, keeping the unzipped output at
that lowest level.

Any help appreciated.

Neil

easy
a comand line unzip program

pkzip came with pkunzip i'm sure there's a more up to date version
that does long filenames.
or winzip has a command line version.

Find a command to run in each directory.
like pkunzip -d *.* (I think it's -d you want, if the zip contains
directories and you want them created)

you could do
C:\>sweep pkunzip -d *.*

that will run that command in every single directory.
it will unzip all zip files in all directories.

you'd have to download sweep.com (I think it was made by pcmag)
dunno how it runs in win xp.

The more efficient way - not so simple - is to be able to run that
command in/on a list of directories. But that's tricky. It'd take a
long time to manually compose a batch file that says
pkunzip -d c:\a\b\*.zip
pkunzip -d c:\a\c\*.zip
e.t.c.
I've never produced a file like that automatically, but a prog like
MiniTrue might create that file.

I think sweep is a good bet and v. easy to do/try. you wanted simple
and that's simple. Much easier than the 'more efficient way'.
 
H

Harry

i think u will have to create a batch file for dosrar to unzip all files to
the same folder where they are. otherwise i don't think there is any
software for it

Harjeet
 

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