您的位置:首页 > 运维架构 > Linux

Linux环境数据备份Python脚本

2015-06-08 15:14 776 查看
#!/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'

搜索

复制
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: