python实现备份目录的方法


Posted in Python onAugust 03, 2015

本文实例讲述了python实现备份目录的方法。分享给大家供大家参考。具体如下:

备份脚本1:

#!/usr/bin/python
# Filename: backup_ver1.py
import os
import time
# 1. The files and directories to be backed up are specified in a list.
source = ['/home/swaroop/byte', '/home/swaroop/bin']
# If you are using Windows, use source = [r'C:\Documents', r'D:\Work'] or something like that
# 2. The backup must be stored in a main backup directory
target_dir = '/mnt/e/backup/' # Remember to change this to what you will be using
# 3. The files are backed up into a zip file.
# 4. The name of the zip archive is the current date and time
target = target_dir + time.strftime('%Y%m%d%H%M%S') + '.zip'
# 5. We use the zip command (in Unix/Linux) to put the files in a zip archive
zip_command = "zip -qr '%s' %s" % (target, ' '.join(source))
# Run the backup
if os.system(zip_command) == 0:
  print 'Successful backup to', target
else:
  print 'Backup FAILED'

输出:

$ python backup_ver1.py
Successful backup to /mnt/e/backup/20041208073244.zip

备份脚本2:

#!/usr/bin/python
# Filename: backup_ver2.py
import os
import time
# 1. The files and directories to be backed up are specified in a list.
source = ['/home/swaroop/byte', '/home/swaroop/bin']
# If you are using Windows, use source = [r'C:\Documents', r'D:\Work'] or something like that
# 2. The backup must be stored in a main backup directory
target_dir = '/mnt/e/backup/' # Remember to change this to what you will be using
# 3. The files are backed up into a zip file.
# 4. 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 zip 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) # make directory
  print 'Successfully created directory', today
# The name of the zip file
target = today + os.sep + now + '.zip'
# 5. We use the zip command (in Unix/Linux) to put the files in a zip archive
zip_command = "zip -qr '%s' %s" % (target, ' '.join(source))
# Run the backup
if os.system(zip_command) == 0:
  print 'Successful backup to', target
else:
  print 'Backup FAILED'

输出:

$ python backup_ver2.py
Successfully created directory /mnt/e/backup/20041208
Successful backup to /mnt/e/backup/20041208/080020.zip
$ python backup_ver2.py
Successful backup to /mnt/e/backup/20041208/080428.zip

备份脚本3:

#!/usr/bin/python
# Filename: backup_ver4.py
import os
import time
# 1. The files and directories to be backed up are specified in a list.
source = ['/home/swaroop/byte', '/home/swaroop/bin']
# If you are using Windows, use source = [r'C:\Documents', r'D:\Work'] or something like that
# 2. The backup must be stored in a main backup directory
target_dir = '/mnt/e/backup/' # Remember to change this to what you will be using
# 3. The files are backed up into a zip file.
# 4. 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 zip archive
now = time.strftime('%H%M%S')
# Take a comment from the user to create the name of the zip file
comment = raw_input('Enter a comment --> ')
if len(comment) == 0: # check if a comment was entered
  target = today + os.sep + now + '.zip'
else:
  target = today + os.sep + now + '_' + \
    comment.replace(' ', '_') + '.zip'
  # Notice the backslash!
# Create the subdirectory if it isn't already there
if not os.path.exists(today):
  os.mkdir(today) # make directory
  print 'Successfully created directory', today
# 5. We use the zip command (in Unix/Linux) to put the files in a zip archive
zip_command = "zip -qr '%s' %s" % (target, ' '.join(source))
# Run the backup
if os.system(zip_command) == 0:
  print 'Successful backup to', target
else:
  print 'Backup FAILED'

输出:

$ python backup_ver4.py
Enter a comment --> added new examples
Successful backup to /mnt/e/backup/20041208/082156_added_new_examples.zip
$ python backup_ver4.py
Enter a comment -->
Successful backup to /mnt/e/backup/20041208/082316.zip

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
python3.3教程之模拟百度登陆代码分享
Jan 16 Python
Python中的MongoDB基本操作:连接、查询实例
Feb 13 Python
Python列表list操作符实例分析【标准类型操作符、切片、连接字符、列表解析、重复操作等】
Jul 24 Python
python实现两个文件合并功能
Apr 01 Python
Python补齐字符串长度的实例
Nov 15 Python
Python中logging.NullHandler 的使用教程
Nov 29 Python
解决python测试opencv时imread导致的错误问题
Jan 26 Python
Python实现的在特定目录下导入模块功能分析
Feb 11 Python
pybind11在Windows下的使用教程
Jul 04 Python
基于numpy中的expand_dims函数用法
Dec 18 Python
Tensorflow实现部分参数梯度更新操作
Jan 23 Python
Django windows使用Apache实现部署流程解析
Oct 12 Python
python使用MySQLdb访问mysql数据库的方法
Aug 03 #Python
浅谈Python中列表生成式和生成器的区别
Aug 03 #Python
详解Python3中的Sequence type的使用
Aug 01 #Python
将Python代码嵌入C++程序进行编写的实例
Jul 31 #Python
Python制作数据导入导出工具
Jul 31 #Python
简单理解Python中的装饰器
Jul 31 #Python
python简单分割文件的方法
Jul 30 #Python
You might like
用PHP实现小型站点广告管理(修正版)
2006/10/09 PHP
php和editplus正则表达式去除空白行
2015/04/17 PHP
php getcwd与dirname(__FILE__)区别详解
2016/09/24 PHP
PHP实现微信退款的方法示例
2019/03/26 PHP
javascript删除option选项的多种方法总结
2013/11/22 Javascript
js继承call()和apply()方法总结
2014/12/08 Javascript
JavaScript中操作字符串小结
2015/05/04 Javascript
jQuery Validate验证框架经典大全
2015/09/23 Javascript
AngularJS入门教程之Select(选择框)详解
2016/07/27 Javascript
微信小程序 实例应用(记账)详解
2016/09/28 Javascript
基于jQuery制作小图标上下滑动特效
2017/01/18 Javascript
js实现自动图片轮播代码
2017/03/22 Javascript
详解React 16 中的异常处理
2017/07/28 Javascript
微信小程序商品详情页规格属性选择示例代码
2017/10/30 Javascript
详解bootstrap导航栏.nav与.navbar区别
2017/11/23 Javascript
详解从react转职到vue开发的项目准备
2019/01/14 Javascript
vue-test-utils初使用详解
2019/05/23 Javascript
独立部署小程序基于nodejs的服务器过程详解
2019/06/24 NodeJs
基于vue-cli3+typescript的tsx开发模板搭建过程分享
2020/02/28 Javascript
[40:04]Secret vs Infamous 2019国际邀请赛淘汰赛 败者组 BO3 第二场 8.23
2019/09/05 DOTA
python使用点操作符访问字典(dict)数据的方法
2015/03/16 Python
Python编程实现生成特定范围内不重复多个随机数的2种方法
2017/04/14 Python
Python数据结构之双向链表的定义与使用方法示例
2018/01/16 Python
教你使用python实现微信每天给女朋友说晚安
2018/03/23 Python
Django框架的中的setting.py文件说明详解
2018/10/15 Python
Pandas 缺失数据处理的实现
2019/11/04 Python
python实现两个字典合并,两个list合并
2019/12/02 Python
Ellos瑞典官网:北欧地区时尚、美容和住宅领域领先的电子商务网站
2019/11/21 全球购物
英国计算机商店:Technextday
2019/12/28 全球购物
本科生求职简历的自我评价
2013/10/21 职场文书
房地产员工找工作的自我评价
2013/11/15 职场文书
校长四风对照检查材料
2014/09/27 职场文书
2014年纪委工作总结
2014/12/05 职场文书
中学生社会实践教育活动总结
2015/05/06 职场文书
担保书怎么写 ?
2019/04/22 职场文书
MySQL慢查询中的commit慢和binlog中慢事务的区别
2022/06/16 MySQL