博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 在windows环境下 压缩文件
阅读量:4606 次
发布时间:2019-06-09

本文共 974 字,大约阅读时间需要 3 分钟。

# coding=GBK__author__ = 'Administrator'import osimport timesourcelist=['d:/share/findshell/plus/php_eval_assert.py','d:/share/findshell/tmp/__init__.py']target_dir='d:/share/backup/'for source in sourcelist:    target_name=source+time.strftime('%Y%m%d%H%M%S')+'.zip'    zip_command="makecab  "+source+"  "+target_name    #if (os.system('powershell -command '+zip_command)):    if (os.system(zip_command).bit_length())==0:        print("压缩成功")    else:print("压缩失败!")

 

# coding=GBK __author__ = 'Administrator' import os import time sourcelist=['d:/share/findshell/plus/php_eval_assert.py','d:/share/findshell/tmp/__init__.py'] target_dir='d:/share/backup/' for source in sourcelist:     target_name=source+time.strftime('%Y%m%d%H%M%S')+'.zip' zip_command="makecab  "+source+"  "+target_name #if (os.system('powershell -command '+zip_command)): if (os.system(zip_command).bit_length())==0: print("压缩成功") else:print("压缩失败!")

转载于:https://www.cnblogs.com/changddcn/p/4936135.html

你可能感兴趣的文章
运维工程师在干什么学些什么?【致菜鸟】
查看>>
Linux中iptables详解
查看>>
java中回调函数以及关于包装类的Demo
查看>>
maven异常:missing artifact jdk.tools:jar:1.6
查看>>
终端安全求生指南(五)-——日志管理
查看>>
Nginx 使用 openssl 的自签名证书
查看>>
创业维艰、守成不易
查看>>
PHP环境安装套件:快速安装LAMP环境
查看>>
CSS3
查看>>
ul下的li浮动,如何是ul有li的高度
查看>>
C++ primer plus
查看>>
python mysqlDB
查看>>
UVALive 3942 Remember the Word Tire+DP
查看>>
从微软的DBML文件中我们能学到什么(它告诉了我们什么是微软的重中之重)~目录...
查看>>
被需求搞的一塌糊涂,怎么办?
查看>>
c_数据结构_队的实现
查看>>
jquery 选择器总结
查看>>
Qt设置背景图片
查看>>
【阿里云文档】常用文档整理
查看>>
java中的Volatile关键字
查看>>