1

Possible Duplicate:
rename files in zip folder using zipmodule

I am manipulating a zip archive with multiple files. I am retrieving the namelist of files that are included in the zip and What I would like to achieve is to rename some of the files according to my conditions.

Community
  • 1
  • 1
topless
  • 8,069
  • 11
  • 57
  • 86

1 Answers1

1

The only operations you can perform on an unzipped archive are read-only ones; you can't edit the content of anything inside a zip file.

Lanaru
  • 9,421
  • 7
  • 38
  • 64