Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Python: Python
simple UnZip
 

Index | Next | Previous | View Flat


jenn.duerr at gmail

Jul 2, 2008, 6:39 AM


Views: 115
Permalink
simple UnZip

Can someone help me with this script, which I found posted elsewhere?
I'm trying to figure out what is going on here so that I can alter it
for my needs, but the lack of descriptive names is making it
difficult. And, the script doesn't quite do anything worthwhile -- it
unzips one file from a zipfile, not all files in a zipfile.

***
import zipfile, os, sys, glob

os.chdir("C:\\Temp")
zips = glob.glob('*.zip')

for fzip in zips:
if zipfile.is_zipfile(fzip):
print fzip," is a zip"
z = zipfile.ZipFile(fzip,'r')
lstName = z.namelist()
sHgt = lstName[0]
print "Unpacking",sHgt
hgt = z.read(sHgt)
fHgt = open(sHgt,'wb')
fHgt.write(hgt)
# fHgt.flush
fHgt.close
print "Finished"
***

I changed it somewhat to
&&&
import zipfile, os, sys

event_zip = ("C:\\Temp\\data4event.zip")

z = zipfile.ZipFile(event_zip, 'r')

zList = z.namelist()

for zItem in zList:
print "Unpacking",zItem
zRead = z.read(zItem)
z1File = open(zItem,'wb')
z1File.write(zRead)
z1File.close
print "Finished"
&&&

This works, but I want to be able to specify a different output
location.

The scenario is that the zip file will always be the same (gets copied
over daily), but it needs to be unzipped to a specific different
directory.

Can anyone help?

Thanks!
--
http://mail.python.org/mailman/listinfo/python-list

Subject User Time
simple UnZip jenn.duerr at gmail Jul 2, 2008, 6:39 AM
    Re: simple UnZip ojeeves at gmail Jul 2, 2008, 7:01 AM
    Re: simple UnZip cwitts at gmail Jul 2, 2008, 7:03 AM
    Re: simple UnZip omer at no-log Jul 2, 2008, 7:07 AM
    Re: simple UnZip jenn.duerr at gmail Jul 2, 2008, 7:18 AM
    Re: simple UnZip google at mrabarnett Jul 2, 2008, 8:25 AM

  Index | Next | Previous | View Flat
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.