博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 文件复制压缩
阅读量:4840 次
发布时间:2019-06-11

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

import osimport time#这里是需要文件所在的位置source=['"C:\\My Documents"',"C:\\Code"]#转换完成之后放到的文件目录target_dir="E:\\Backup"#判断有没有该文件,没有就创建一个if not os.path.exists(target_dir):    os.mkdir(target_dir)#os.sep:取代操作系统特定的路径分隔符today=target_dir + os.sep +time.strftime("%Y%m%d")now = time.strftime("%H%M%S")target=today+os.sep+now+".zip"if not os.path.exists(today):    os.mkdir(today)    print("Successful created directory",today)#执行压缩的命令zip_command='zip -r {0} {1}'.format(target,' '.join(source))print("Zip command is:")print(zip_command)print("Running:")if os.system(zip_command)==0:    print("Successful backup to",target)else:    print("Backup FAILED")

  

转载于:https://www.cnblogs.com/imzscilovecode/p/8527879.html

你可能感兴趣的文章
配置的热更新
查看>>
ios view的frame和bounds之区别(位置和大小)
查看>>
USB小白学习之路(11) Cy7c68013A驱动电路设计注意事项(转)
查看>>
Luogu 2530 化工厂装箱员
查看>>
自定义webUI实例
查看>>
用NSAttributedString实现简单的图文混排
查看>>
多语境的操作
查看>>
SNS营销——网商成功之道
查看>>
jqgrid 加载时第一页面只显示多少条数据
查看>>
magic模块 :Exception Value:failed to find libmagic. Check your installation
查看>>
C#小游戏(文字对战游戏)
查看>>
COGS2314. [HZOI 2015] Persistable Editor
查看>>
my college goal
查看>>
java switch case 枚举类型的反编译结果
查看>>
关于dubbo+shiro导致dubbo无法注入到Realm的问题解决方案
查看>>
entity framework使用技巧
查看>>
面试题24: 反转链表
查看>>
Ubuntu 下安装 Oracle Java
查看>>
collectionView/tableview刷新时关闭动画无效
查看>>
C#线程篇---解答线程之惑(2)
查看>>