亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • Python實現定期檢查源目錄與備份目錄的差異并進行備份功能示例

Python實現定期檢查源目錄與備份目錄的差異并進行備份功能示例

發布時間:2020-10-25 16:33:47 來源:腳本之家 閱讀:170 作者:亂彈世界 欄目:開發技術

本文實例講述了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()

最后根據需要,可以設定一個定時檢查,進行自動同步源目錄和備份目錄,讓其保持一致性。

PS:這里再為大家推薦一款功能相似的在線工具供大家參考使用:

在線文本比較工具:
http://tools.jb51.net/aideddesign/txt_diff

更多關于Python相關內容感興趣的讀者可查看本站專題:《Python文件與目錄操作技巧匯總》、《Python文本文件操作技巧匯總》、《Python數據結構與算法教程》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》及《Python入門與進階經典教程》

希望本文所述對大家Python程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

三江| 麻江县| 沽源县| 阳朔县| 温州市| 观塘区| 金乡县| 兖州市| 五峰| 忻州市| 原阳县| 德格县| 铜山县| 林州市| 景德镇市| 无极县| 晋江市| 凤山市| 马鞍山市| 崇州市| 炉霍县| 长顺县| 湖南省| 新化县| 金湖县| 东乡族自治县| 杭锦旗| 江山市| 乡宁县| 亚东县| 竹山县| 四平市| 乌苏市| 章丘市| 洱源县| 依安县| 渝北区| 行唐县| 卫辉市| 盐亭县| 思茅市|