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

python 备份脚本

时间:2014-07-23 12:39:46      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:os   re   c   ar   python   res   


import os
import time
source= r"out_res.txt"
target_dir= r"F:\python\Doc"
target=target_dir+time.strftime(‘%Y%m%d%H%M%S‘)+‘.zip‘
zip_commond="makecab %s %s " %(source,target)
print ‘\n Run the backup:‘,
print zip_commond+‘\n‘
if os.system(zip_commond)==0:
print ‘Successful backup to ‘,target
else:
print ‘Backup Failed.‘

python 备份脚本,布布扣,bubuko.com

python 备份脚本

标签:os   re   c   ar   python   res   

原文地址:http://www.cnblogs.com/charlie-badegg/p/3862341.html

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