這篇文章主要介紹了Python 備份程式碼實現的相關資料,需要的朋友可以參考下
Python的一個備份程式
這是一個備份腳本。路徑請自行更換。
這是一個備份腳本,按照當前日期分目錄,以時間作為文件名,並且可以在文件名加入備註信息.
以zip方式作為壓縮方式, 有特殊需求可以改變.
實例程式碼:
#! /usr/bin/python #coding=utf-8 #这是一个备份脚本,按照当前日期分目录,以时间作为文件名,并且可以在文件名加入备注信息. #以zip方式作为压缩方式, 有特殊需求可以更改. import os import time source = ['/home/leeicoding/workspace/j2ee','/home/leeicoding/workspace/python'] target_dir = '/home/leeicoding/bak' #获取系统时间 today = target_dir + time.strftime('%Y%m%d') now = time.strftime('%H%M%S') # 输入备注 comment = raw_input('请输入备注:') if len(comment) == 0: print('无备注') target = today + os.sep + now + '.zip' else: target = today + os.sep + now + comment.replace(' ','_') + '.zip' if not os.path.exists(today): os.mkdir(today) print('创建目录'+today+'成功') # 备份命令 # q 静默方式 r递归目录 zip_command = 'zip -qr "%s" %s' % (target, ' '.join(source)) if os.system(zip_command) == 0: print('备份成功,存放在: '+target)
【相關推薦】
#1. 特別推薦:「php程式設計師工具箱」V0.1版本下載
2. Python免費影片教學
3. Python基礎入門教學
以上是Python 備份程式的方法教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!