码迷,mamicode.com
首页 > 其他好文 > 详细

shutil模块(2)——压缩目录、文件

时间:2017-07-23 21:15:43      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:txt   logs   close   author   test   生成文件   log   int   div   

打包目录

1 #_*_coding:utf-8_*_
2 #__author__ = "csy"
3 import shutil
4 
5 shutil.make_archive("test","zip","D:/5")   #生成文件名test,格式zip,目录路径

另外也可以用zipfile模块,指定具体要压缩的文件

1 #_*_coding:utf-8_*_
2 #__author__ = "csy"
3 
4 import zipfile
5 z = zipfile.ZipFile("5.zip","w")
6 z.write("1.txt")
7 print("=========~~~~~~~~~~")
8 z.write("3.txt")
9 z.close()

解压

1 #_*_coding:utf-8_*_
2 #__author__ = "csy"
3 
4 import zipfile
5 z = zipfile.ZipFile("5.zip","r")
6 z.extractall()
7 z.close()

 

shutil模块(2)——压缩目录、文件

标签:txt   logs   close   author   test   生成文件   log   int   div   

原文地址:http://www.cnblogs.com/csy113/p/7225662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!