venerdì 22 agosto 2008

[Python] ZipArchives

Descrizione
Mostra come interagire con archivi ZIP

Codice
import zipfile
z = zipfile.ZipFile("a.zip", "r")
for file in z.namelist( ):
 print "Lista files:\n", file 
 bytes = z.read(file)
 print ' - ', len(bytes), 'bytes'

0 commenti: