Linux环境数据备份Python脚本

非 Y 不嫁゛ 提交于 2019-12-22 14:35:50


#!/usr/bin/python
#Filename:backupscript.py
import os
import time

# The files and directories to be backed up are specified in a list.
source = ['/data/']

# The backup must be stored in a main backup directory
target_dir = '/mnt/backup/'

# The current day is the name of the subdirectory in the main directory
today = target_dir + time.strftime('%Y_%m_%d')

# The current time is the name of the tar archive
now = time.strftime('%H_%M_%S')

 

# Create the subdirectory if it isn't already there

if not os.path.exists(today):
  os.mkdir(today)
  print 'Successfully created directory', today

# The name of the tar file

target = today + os.sep + now +'.tar.gz'

# We use the tar command (in Unix/Linux) to put the files in a tar archive

tar_command = "tar zcvf '%s' %s" % (target, ' '.join(source))

if os.system(tar_command) == 0:
  print 'Successful backup to', target
else:
  print 'Backup failed'

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!