码迷,mamicode.com
首页 > 编程语言 > 详细

Python删除文件及进行文件夹压缩

时间:2018-05-14 11:06:07      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:set   run   .config   ted   删除文件   部分   utf-8   code   system   

示例效果:

项目编译发布后,删除部分配置文件,然后做成发布文件的压缩包。

 

# -*- coding: UTF-8 -*-
import os,sys  
import zipfile
import datetime,time

def getToday_yyyyMMdd():
    #return time.strftime("%Y%m%d %H:%M:%S",time.localtime(time.time()))
    return time.strftime("%Y%m%d",time.localtime(time.time()))

def remove_noneed_files(startdir):
    if(os.path.exists(startdir+"\\appsettings.json")):
        os.remove(startdir+"\\appsettings.json")
    #if(os.path.exists(startdir+"\\nlog.config")):
        #os.remove(startdir+"\\nlog.config")
    if(os.path.exists(startdir+"\\nlog.Development.config")):
        os.remove(startdir+"\\nlog.Development.config")
    #if(os.path.exists(startdir+"\\web.config")):
        #os.remove(startdir+"\\web.config")

def zip_yasuo(startdir,file_news):
    z = zipfile.ZipFile(file_news,w,zipfile.ZIP_DEFLATED) 
    for dirpath, dirnames, filenames in os.walk(startdir):
        fpath = dirpath.replace(startdir,‘‘)
        fpath = fpath and fpath + os.sep or ‘‘
        for filename in filenames:
            z.write(os.path.join(dirpath, filename),fpath+filename)
    z.close()
    
if __name__=="__main__":
    print("run start")
    startdir = "D:\\Projects\\Deploy"  
    file_news = C:\\Users\admin\\Desktop\\Deploy+getToday_yyyyMMdd()+.zip 
    remove_noneed_files(startdir)
    zip_yasuo(startdir,file_news)
    print("run finished")
    #os.system(‘pause‘)

 

Python删除文件及进行文件夹压缩

标签:set   run   .config   ted   删除文件   部分   utf-8   code   system   

原文地址:https://www.cnblogs.com/freeliver54/p/9034903.html

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