Python实现定期检查源目录与备份目录的差异并进行备份功能示例


Posted in Python onFebruary 27, 2019

本文实例讲述了Python实现定期检查源目录与备份目录的差异并进行备份功能。分享给大家供大家参考,具体如下:

在项目中,经常要更新文件,在更新之前首先要备份源文件,所以就用到了这个脚本(来自于Python自动化运维这本书),总共有以下几个步骤:

1. 获取要进行比较的两个目录,进行差异比较,把源目录特有的文件或目录、以及和备份目录不同的文件或目录保存到列表中,并且判断目录下面是否还有目录,递归进行保存这些差异文件。
2. 将差异文件列表中文件或目录的路径换成对应的备份路径,进行判断,如果备份路径不存在,就创建目录。
3. 继续对比源目录和新创建的备份目录中的差异文件,把源路径换成备份目录的路径。
4. 然后遍历复制源目录文件到备份目录。

以下是具体的实现代码:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os, sys
import filecmp
import re
import shutil
holderlist = []
##对应第一个步骤
def compare_me(dir1, dir2):
  dircomp = filecmp.dircmp(dir1, dir2)
  only_in_one = dircomp.left_only
  diff_in_one = dircomp.diff_files
  dirpath = os.path.abspath(dir1)
  [ holderlist.append(os.path.abspath(os.path.join(dir1, x))) for x in only_in_one ]
  [ holderlist.append(os.path.abspath(os.path.join(dir1, x))) for x in diff_in_one ]
  if len(dircomp.common_dirs) > 0:
    for item in dircomp.common_dirs:
      compare_me(os.path.abspath(os.path.join(dir1, item)), os.path.abspath(os.path.join(dir2, item)))
  return holderlist
##对应第二个步骤
def main():
  if len(sys.argv) > 2:
    dir1 = sys.argv[1]
    dir2 = sys.argv[2]
  else:
    print "Usage: ", sys.argv[0], "datadir backupdir"
    sys.exit()
  source_files = compare_me(dir1, dir2)
  dir1 = os.path.abspath(dir1)
  if not dir2.endswith('/'):
    dir2 = dir2 + '/'
  dir2 = os.path.abspath(dir2)
  destination_files = []
  createdir_bool = False
  for item in source_files:
    destination_dir = re.sub(dir1, dir2, item)
    destination_files.append(destination_dir)
    if os.path.isdir(item):
      if not os.path.exists(destination_dir):
        os.makedirs(destination_dir)
        createdir_bool = True
   ##对应第三个步骤
  if createdir_bool:
    destination_files = []
    source_files = []
    source_files = compare_me(dir1, dir2)
    for item in source_files:
      destination_dir = re.sub(dir1, dir2, item)
      destination_files.append(destination_dir)
  ##对应第四个步骤
  print "update item: "
  print source_files
  copy_pair = zip(source_files, destination_files)
  print "copy_pair is %s" % copy_pair
  for item in copy_pair:
    print "item is %s, %s" % (item[0], item[1])
    if os.path.isfile(item[0]):
      shutil.copyfile(item[0], item[1])
if __name__ == '__main__':
  main()

最后根据需要,可以设定一个定时检查,进行自动同步源目录和备份目录,让其保持一致性。

Python 相关文章推荐
python实现根据图标提取分类应用程序实例
Sep 28 Python
在Python中关于中文编码问题的处理建议
Apr 08 Python
详解Django中的ifequal和ifnotequal标签使用
Jul 16 Python
python中enumerate函数遍历元素用法分析
Mar 11 Python
对Python进行数据分析_关于Package的安装问题
May 22 Python
python遍历文件夹下所有excel文件
Jan 03 Python
python使用tensorflow保存、加载和使用模型的方法
Jan 31 Python
Python实现字符串的逆序 C++字符串逆序算法
May 28 Python
python scipy求解非线性方程的方法(fsolve/root)
Nov 12 Python
Python3内置模块random随机方法小结
Jul 13 Python
python tkinter组件使用详解
Sep 16 Python
python和js交互调用的方法
Jun 23 Python
详解Django-restframework 之频率源码分析
Feb 27 #Python
Python的UTC时间转换讲解
Feb 26 #Python
Python逐行读取文件中内容的简单方法
Feb 26 #Python
Python计算时间间隔(精确到微妙)的代码实例
Feb 26 #Python
python3编写ThinkPHP命令执行Getshell的方法
Feb 26 #Python
初探利用Python进行图文识别(OCR)
Feb 26 #Python
Python编写合并字典并实现敏感目录的小脚本
Feb 26 #Python
You might like
php出现web系统多域名登录失败的解决方法
2014/09/30 PHP
php函数连续调用实例分析
2015/07/30 PHP
js 实现无缝滚动 兼容IE和FF
2009/07/15 Javascript
自己编写的类似JS的trim方法
2013/10/09 Javascript
jquery实现动态菜单的实例代码
2013/11/28 Javascript
jQuery判断复选框是否勾选的原理及示例
2014/05/21 Javascript
js星星评分效果
2014/07/24 Javascript
JavaScript实现按Ctrl键打开新页面
2014/09/04 Javascript
两行代码轻松搞定JavaScript日期验证
2016/08/03 Javascript
js判断浏览器是否支持严格模式的方法
2016/10/04 Javascript
servlet+jquery实现文件上传进度条示例代码
2017/01/25 Javascript
Jquery EasyUI $.Parser
2017/06/02 jQuery
使用vue制作FullPage页面滚动效果
2017/08/21 Javascript
Bootstrap实现可折叠分组侧边导航菜单
2018/03/07 Javascript
vue 录制视频并压缩视频文件的方法
2018/07/27 Javascript
15分钟深入了解JS继承分类、原理与用法
2019/01/19 Javascript
JavaScript常用事件介绍
2019/01/21 Javascript
vue表单验证你真的会了吗?vue表单验证(form)validate
2019/04/07 Javascript
JS开发 富文本编辑器TinyMCE详解
2019/07/19 Javascript
vue中watch和computed的区别与使用方法
2020/08/23 Javascript
Vue中computed和watch有哪些区别
2020/12/19 Vue.js
Python环境变量设置方法
2016/08/28 Python
Python tkinter实现的图片移动碰撞动画效果【附源码下载】
2018/01/04 Python
python爬虫爬取淘宝商品信息
2018/02/23 Python
Python远程视频监控程序的实例代码
2019/05/05 Python
tensorflow 保存模型和取出中间权重例子
2020/01/24 Python
Python unittest discover批量执行代码实例
2020/09/08 Python
cosme官方海外旗舰店:日本最大化妆品和美容产品的综合口碑网站
2017/01/18 全球购物
外企C语言笔试题
2013/11/10 面试题
厨房工作人员岗位职责
2013/11/15 职场文书
安全大检查反思材料
2014/01/31 职场文书
文明寄语大全
2014/04/11 职场文书
css display table 自适应高度、宽度问题的解决
2021/05/07 HTML / CSS
react使用antd的上传组件实现文件表单一起提交功能(完整代码)
2021/06/29 Javascript
Go语言空白表示符_的实例用法
2021/07/04 Golang
JavaWeb 入门篇:创建Web项目,Idea配置tomcat
2021/07/16 Java/Android