python實現定時自動備份文件到其餘主機

定時將源文件或目錄使用WinRAR壓縮並自動備份到本地或網絡上的主機python


1.確保WinRAR安裝在默認路徑或者把WinRAR.exe添加到環境變量中網絡

2.在代碼裏的sources填寫備份的文件或目錄,target_dir填寫備份目的目錄app

3.delete_source_file爲備份完後是否刪除源文件(不刪除子文件夾)spa

4.備份成功/失敗後生成備份日誌日誌


 

按照格式,填寫源目的:code

sources = [r'E:\目錄1', r'E:\目錄2\b.txt'] #例:= [ r'E:\test\1234.txt', r'E:\test1']
target_dir = r'\\10.1.5.227\共享\備份'     #例:= r'D:\備份' 或 = r'\\10.1.5.227\共享目錄'
delete_source_file = False                #False/True

手動運行三次,已經有兩個備份zip了orm

打開log查看爲何少了一個視頻

能夠看到目錄1備份失敗了,細看發現,目錄1下的a.txt沒有權限(讀取),是由於用戶對該文件沒有權限。blog

若是該目錄或者子目錄下有一個沒有權限,會致使整個目錄都不能備份, 日誌看到a.txt沒有權限.ip

第二次備份的時候將源文件刪除後,第三次備份就沒有文件備份了

 

接下來將腳本程序添加到win的計劃任務裏,就能實現定時自動備份辣<( ̄︶ ̄)>

 

把代碼文件添加進來,同時也能夠在這裏添加參數-d, 指明備份完後刪除源文件

 

完整代碼

python3.0

 1 # -*- coding=utf-8 -*-
 2 #進行了一場py/etherchannel
 3 import os, sys  4 import time  5 import logging  6 
 7 sources = [r'E:\視頻筆記', r'E:\目錄\b.txt']  #例:= [ r'E:\test\1234.txt', r'E:\test1']
 8 target_dir = r'\\10.1.5.227\共享\備份'       #例:= r'D:\備份' 或 = r'\\10.1.5.227\共享目錄'
 9 delete_source_file = False                  #False/True
 10 
 11 def Init_Logging(path):  12     logging.basicConfig(level=logging.INFO,  13         format='%(asctime)s %(levelname)-8s %(message)s',  14         filename=path + '\\' + 'log.txt',  15         filemode='a',  16         datefmt='%Y-%m-%d %X')  17 
 18 def Ctypes(message, title):  19     import ctypes  20     ctypes.windll.user32.MessageBoxA(0,message.encode('gb2312'), \  21     title.encode('gb2312'),0)  22  sys.exit()  23 
 24 def Check_Dir_Permit(dirs, dirc_permit=True, root=''):  25     for dirc in dirs:  26         dirc = os.path.join(root,dirc)  27         try:  28  os.chdir(dirc)  29         except IOError as e:  30             logging.error("找不到指定文件或沒有權限 >>> " + str(e))  31             dirc_permit = False  32     return dirc_permit  33     
 34 def Create_Directory(dir):  35     if not os.path.exists(dir):  36         try:  37  os.mkdir(dir)  38             print('Successfully created directory',dir)  39         except IOError as e:  40             Ctypes(u"target_dir 目錄路徑不存在 ", u' 錯誤')  41     assert Check_Dir_Permit([dir]), Ctypes(u"target_dir 沒有權限 ", u' 錯誤')  42     return dir  43 
 44 def Check_File_Permit(files, file_permit=True, root=''):  45     for filename in files:  46         file = os.path.join(root,filename)  47         try:  48             f = open(file)  49  f.close()  50         except IOError as e:  51             logging.error("找不到指定文件或沒有權限 >>> " + str(e))  52             file_permit = False  53     return file_permit  54     
 55 def Permit_Source(sources):  56     allow_sources = []  57     disallow_sources = []  58     for source in sources:  59         file_permit = True  60         dirc_permit = True  61         for (root, dirs, files) in os.walk(source):  62             file_permit = Check_File_Permit(files, file_permit,root=root)  63             dirc_permit = Check_Dir_Permit(dirs, dirc_permit,root=root)  64         if os.path.isdir(source) and file_permit and dirc_permit or \  65             os.path.isfile(source) and Check_File_Permit([source], file_permit):  66  allow_sources.append(source)  67         else:  68  disallow_sources.append(source)  69     return (allow_sources,disallow_sources)  70     
 71 def Delete_Files(allow_sources):  72     for source in allow_sources:  73         if os.path.isdir(source):  74             command = 'del /a/s/f/q ' + source    #/s:也把子文件夾的文件一併刪除
 75             if os.system(command) == 0:  76                 logging.info('del: ' + str(source))  77             else:  78                 logging.error(str(source) + ' 刪除失敗')  79         else:  80             command = 'del /a/f/q ' + source  81             if os.system(command) == 0:  82                 logging.info('del: ' + str(source))  83             else:  84                 logging.error(str(source) + ' 刪除失敗')  85                 
 86 def Compress_Backup(target, source):  87     target = target + '\\' + time.strftime('%Y%m%d%H%M%S') + '.rar'
 88     if os.path.exists(r"C:\Program Files (x86)\WinRAR\WinRAR.exe"):  89         rar_command = r'"C:\Program Files (x86)\WinRAR\WinRAR.exe" A %s %s' % (target,' '.join(source))
 90     else:  91         rar_command = 'WinRAR' + ' A %s %s' % (target,' '.join(source))  92     if os.system(rar_command) == 0:  93         print('Successful backup to', target)  94         logging.info(str(source) + ' 備份到 ' + str(target) + ' 成功')  95         try:  96             if delete_source_file or sys.argv[1] == '-d':  97  Delete_Files(source)  98         except IndexError:  99             pass
100     else: 101         logging.error("備份失敗:WinRAR出錯,確認路徑 或 壓縮被中斷") 102         Ctypes(u"備份失敗:WinRAR出錯,確認路徑 或 壓縮被中斷", u' 錯誤') 103 
104 if __name__ == '__main__': 105     target_dir = Create_Directory(target_dir) 106  Init_Logging(target_dir) 107     logging.info('=' * 80) 108     allow_sources, disallow_sources = Permit_Source(sources) 109     if allow_sources: 110  Compress_Backup(target_dir, allow_sources) 111     if disallow_sources: 112         print(disallow_sources, ' 備份失敗') 113         logging.error(str(disallow_sources) + ' 備份失敗')
相關文章
相關標籤/搜索