Path: utzoo!news-server.csri.toronto.edu!cs.utexas.edu!asuvax!ncar!gatech!udel!brahms.udel.edu!sguerke From: sguerke@brahms.udel.edu (Stephen Guerke) Newsgroups: comp.os.msdos.apps Subject: Re: PKUNZIPping directory trees Message-ID: <19342@brahms.udel.edu> Date: 5 Mar 91 19:11:34 GMT References: <1991Mar03.171051.20116@ariel.unm.edu> Organization: University of Delaware Lines: 16 I always zip files with the following pkzip -arp [filename.zip] root/subdir/*.* root/arc.dir/ This will recursively zip all the files and subdirectories and their files from the *.*n, and place the filename.zip file in the /arc.dir/ (be sure the second backslash is there). To unzip the file and the entire directory structure that you zipped all you need do is type the following command line: pkunzip -d filename.zip By substituting the -u (update) command for the -a (add) command you can easily write a batch file which will allow you to make weekly backups (or daily) of your work files with ease.