首页 > 代码库 > 用python备份文件
用python备份文件
光说不练假把式,用小脚本学习Python。 一个简单的备份脚本。 #!/usr/bin/env python3 #-*- coding:utf-8 -*- #for backup import os import time #需要备份的目录 source = [‘/var/log/history/‘,‘/var/log/httpd/‘] #保存备份的目录 target_dir = ‘/tmp/‘ today_dir = target_dir + time.strftime(‘%Y%m%d‘) time_dir = time.strftime("%H%M%S") ‘‘‘ os.sep:主要是为了跨平台,根据系统的不同,分隔符不一样 >>> os.sep ‘/‘ ‘‘‘ touch = today_dir + os.sep + time_dir + ‘.zip‘ print(touch) ‘‘‘ zip : -q:执行时不显示压缩过程 -r:对该目录递归 ‘ ‘.join(source):将列表转换位字符串 >>> sou = [‘s‘,‘y‘,‘l‘] >>> s = ‘ ‘.join(sou) >>> print(s) s y l ‘‘‘ zip_command = "zip -qr " + touch + ‘ ‘ + ‘ ‘.join(source) print(zip_command) ‘‘‘ 将target、source及“ zip -qr ”通过字符串连接符号相连接,得到command命令行,再调用os.system()函数运行command命令,如果成功,返回0,否则返回错误号 os.path.exits():exits()函数的功能就是检查该系统中,是否存在指定路径的文件或文件夹存,没有返回False(False 等于 0),有则返回True(True 不等于 0) >>> os.path.exists(‘/‘) True >>> os.path.exists(‘/true‘) False ‘‘‘ if os.path.exists(today_dir)==0: os.mkdir(today_dir) if os.system(zip_command) == 0: print(‘Successful backup‘) else: print(‘Backup Failed‘)
本文出自 “拔电源的运维空间” 博客,请务必保留此出处http://zhangdj.blog.51cto.com/9210512/1880519
用python备份文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。