亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Python實(shí)現(xiàn)網(wǎng)站文件的全備份和差異備份

 更新時(shí)間:2014年11月30日 20:15:41   投稿:mdxy-dxy  
這篇文章主要介紹了Python實(shí)現(xiàn)網(wǎng)站文件的全備份和差異備份,需要的朋友可以參考下

之前有寫(xiě)利用md5方式來(lái)做差異備份,但是這種md5方式來(lái)寫(xiě)存在以下問(wèn)題:

•md5sum獲取有些軟連接的MD5值存在問(wèn)題
•不支持對(duì)空目錄進(jìn)行備份,因?yàn)閙d5sum無(wú)法獲取空目錄的md5值
•權(quán)限的修改md5sum無(wú)法判斷

解決方案:

利用文件的mtime ctime

mtime(Modified time)是在寫(xiě)入文件時(shí)隨文件內(nèi)容的更改而更改的
ctime(Create time)是在寫(xiě)入文件、更改所有者、權(quán)限或鏈接設(shè)置時(shí)隨Inode的內(nèi)容更改而更改的
廢話不多說(shuō)直接上代碼:

#!/usr/bin/env python
import time,os,sys,cPickle

fileInfo = {}

def logger(time,fileName,status,fileNum):
  f = open('backup.log','a')
  f.write("%s\t%s\t%s\t\t%s\n" % (time,fileName,status,fileNum))

def tar(sDir,dDir,fileNum):
  command = "tar zcf %s %s >/dev/null 2>&1" % (dDir + ".tar.gz",sDir)
  if os.system(command) == 0:
    logger(time.strftime('%F %X'),dDir + ".tar.gz",'success',fileNum)
  else:
    logger(time.strftime('%F %X'),dDir + ".tar.gz",'failed',fileNum)

def fullBak(path):
  fileNum = 0
  for root,dirs,files in os.walk(path):
    for name in files:
      file = os.path.join(root, name)
      mtime = os.path.getmtime(file)
      ctime = os.path.getctime(file)
      fileInfo[file] = (mtime,ctime)
      fileNum += 1
  f = open(P,'w')
  cPickle.dump(fileInfo,f)
  f.close()
  tar(S,D,fileNum)

def diffBak(path):
  for root,dirs,files in os.walk(path):
    for name in files:
      file = os.path.join(root,name)
      mtime = os.path.getmtime(file)
      ctime = os.path.getctime(file)
      fileInfo[file] = (mtime,ctime)

  if os.path.isfile(P) == 0:
    f = open(P,'w')
    f.close()

  if os.stat(P).st_size == 0:
    f = open(P,'w')
    cPickle.dump(fileInfo,f)
    fileNum = len(fileInfo.keys())
    f.close()
    print fileNum
    tar(S,D,fileNum)
  else:
    f = open(P)
    old_fileInfo = cPickle.load(f)
    f.close()
    difference = dict(set(fileInfo.items())^set(old_fileInfo.items()))
    fileNum = len(difference)
    print fileNum

    difference_file = ' '.join(difference.keys())
    print difference_file

    tar(difference_file,D,fileNum)
    f = open(P,'w')
    cPickle.dump(fileInfo,f)
    f.close()

def Usage():
  print '''
    Syntax: python file_bakcup.py pickle_file model source_dir filename_bk
      model: 1:Full backup 2:Differential backup

    example: python file_backup.py fileinfo.pk 2 /etc etc_$(date +%F)
      explain: Automatically add '.tar.gz' suffix
  '''
  sys.exit()

if len(sys.argv) != 5:
  Usage()

P = sys.argv[1]
M = int(sys.argv[2])
S = sys.argv[3]
D = sys.argv[4]

if M == 1:
  fullBak(S)
elif M == 2:
  diffBak(S)
else:
  print "\033[;31mDoes not support this mode\033[0m"
  Usage()

測(cè)試:

$ python file_backup.py data.pk 1 data data_$(date +%F) #全備份
$ > data/chabaoo.cn #測(cè)試創(chuàng)建文件,修改文件權(quán)限
$ chmod 777 data/py/eshop_bk/data.db
$ python file_backup.py data.pk 2 data data_$(date +%F)_1 #備份改變的文件
2
data/py/eshop_bk/data.db data/chabaoo.cn

看了博主的代碼,很受啟發(fā),但是有一個(gè)問(wèn)題,如果我完成完整備份之后,刪除了其中某個(gè)文件,再做差異備份,可以檢測(cè)出被刪除的文件,但是執(zhí)行tar就會(huì)出錯(cuò),因?yàn)檫@個(gè)文件已經(jīng)是不存在的了,所以在執(zhí)行tar之前,最好用os.path.exists()判斷一下差異文件路徑是否存在,如果不存在則不執(zhí)行tar, 反饋一條文件刪除信息。

相關(guān)文章

最新評(píng)論