This article mainly introduces the use of Python compression and decompression zip file tutorial, the main use of the ZipFile package, the need for friends can refer to the
Python's ZipFile provides a very handy way to compress and decompress zip files.
For example, in the directory where the py script resides, there are the following files:
The code is as follows:
Readability/readability.js
Readability/readability.txt
Readability/readability-print.css
Readability/sprite-readability.png
Readability/readability.css
Compress the files in the readability directory into the Readability.zip file in the directory where the script resides, keep the same file structure, print out a list of files for the resulting compressed package, and then extract the files to the output directory of the script directory and output/in two different ways Bak directory.
The script is as follows:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 The |
|