首页 > 编程语言 > 详细

python 备份脚本

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


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 备份脚本

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!