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

Python写的备份目录文件的脚本

时间:2015-05-27 16:00:50      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:python备份脚本

#!/usr/bin/python

# -*- coding: utf-8 -*-

#filename back.py

#author superchen


import os

import time

source =‘/home/shiyanlou/Documents/‘

target_dir = ‘/home/shiyanlou/Desktop‘

target = target_dir+time.strftime(‘%Y-%m-%d-%H-%M-%S‘)+‘.zip‘

zip_command = "zip -qr %s %s" %(target,‘‘.join(source))

#q命令是安静运行r命令是递归的执行

if os.system(zip_command)==0:

    print ‘sucessful backup‘

else:

    print "backup failed"


Python写的备份目录文件的脚本

标签:python备份脚本

原文地址:http://leizhu.blog.51cto.com/3758740/1655639

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