1. 介绍

通过实例学习Python的使用,该实例来自文献[1]中的第11章解决问题。

由于没有搞清楚Win7下如何通过命令行调用zip命令,所以采用7z[2],采用7-zip命令行版本[3],版本号为7-zip 9.20,下载后需要配置环境变量,修改Path,使其包含7za.exe所在目录。

软硬件配置情况:

Win7旗舰版 SP1

Python 3.4

7-zip 9.20 命令行版本(需要配置环境变量Path)

2. 问题

写一个能给我所有重要文件建立备份的程序。

程序如何工作:

1.需要备份的文件和目录由一个列表指定。

2.备份应该保存在主备份目录中。

3.文件备份成一个zip文件。

4.zip存档的名称是当前的日期和时间。

5.使用标准的zip命令。它通常默认的随Linux/ Unix发行版提供。Windows用户可以从GnuWin32项目安装。注意你可以使用任何存档命令,只要它有命令行界面就可以了,那样的话我们可以从我们的脚本中传递参数给它。(本文使用了7-zip 9.20命令行版本)

解决方案来自参考文献[1]。

2.1 解决方案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 = ['"D:\\QT\\py 1"','D:\\QT\\py2']
# Notice we had to use double quotes inside the string for names with spaces in it # 2. The backup must be stored in a main backup directory
target_dir = 'D:\\PYBackup' # 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 + os.sep + time.strftime('%Y%m%d%H%M%S') + '.zip' # 5. We use the 7za command to put the files in a zip archive
zip_command = '7za.exe a {0} {1}'.format(target, ' '.join(source)) # Run the backup
if os.system(zip_command) == 0:
print ('Successful backup to ', target)
else:
print ('Backup Failed')

运行结果:

2.2 解决方案2

实现功能:

更好的文件名机制:使用时间作为文件名,而当前的日期作为目录名,存在在主备份目录中。这样做的优势:

(1)你的备份会以等级结构存储,因此它就更容易管理了。

(2)文件名的长度变短。

(3)采用各自独立的文件夹可以帮助你方便的检验你是否在每一天创建了备份。

代码如下所示:

 #! /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 = ['"D:\\QT\\py 1"','D:\\QT\\py2']
# Notice we had to use double quotes inside the string for names with spaces in it # 2. The backup must be stored in a main backup directory
target_dir = 'D:\\PYBackup' # 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 + os.sep + 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 7za command to put the files in a zip archive
zip_command = '7za.exe a {0} {1}'.format(target, ' '.join(source)) # Run the backup
if os.system(zip_command) == 0:
print ('Successful backup to ', target)
else:
print ('Backup Failed')

运行结果:

2.3 解决方案3

实现功能:

通过在zip归档名上附带一个用户提供的注释来提高备份的可理解性。

代码如下所示:

 #! /usr/bin/python
# Filename: backup_ver3.py import os
import time # 1. The files and directories to be backed up are specified in a list
source = ['"D:\\QT\\py 1"','D:\\QT\\py2']
# Notice we had to use double quotes inside the string for names with spaces in it # 2. The backup must be stored in a main backup directory
target_dir = 'D:\\PYBackup' # 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 + os.sep + 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 = 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' # 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 7za command to put the files in a zip archive
zip_command = '7za.exe a {0} {1}'.format(target, ' '.join(source)) # Run the backup
if os.system(zip_command) == 0:
print ('Successful backup to ', target)
else:
print ('Backup Failed')

运行结果:

输入Backup

没有输入任何值,直接按回车

3. 总结

看到自己编写的程序能够运行并完成预期的功能,感觉挺爽!

Python,还没入门,还有好多的路要走,加油!

参考文献

[1] Swaroop, C.H.(著), Let it be!(译)(e-mail: 329974248@qq.com), A Byte of Python v1.92(for Python 3.0), 2011.7.9

[2] 7z, http://sparanoid.com/lab/7z/

[3] 7-zip 命令行版本(7-zip 9.20), http://downloads.sourceforge.net/sevenzip/7za920.zip

Python实例学习-文件备份的更多相关文章

  1. Python实现文件备份

    Python实现文件拷贝 2017年8月27日 1.实现目的 统一时间对服务器某文件夹内文件进行备份保存,如若备份成功则不提示任何错误,否则将以邮件的形式告知管理员,备份出错. 2.程序流程图 主要流 ...

  2. Python/CMD 文件备份

    1.使用Python压缩文件并另存 import zipfile, os #备份文件ZIP格式: folder 目标文件夹 : Targetfolder:另存地址 def backuptozip(fo ...

  3. Python检查 文件备份是否正常 云备份进程是否正常运行

    场景:服务器自动备份数据库文件,每两小时生成一个新备份文件,通过云备份客户端自动上传,需要每天检查是否备份成功. 实现:本脚本实现检查文件是否备份成功,进程是否正常运行,并且发送相关邮件提醒. #! ...

  4. python项目练习地址

    作者:Wayne Shi链接:http://www.zhihu.com/question/29372574/answer/88744491来源:知乎著作权归作者所有,转载请联系作者获得授权. 目前是3 ...

  5. 从0开始的Python学习013编写一个Python脚本

    通过之前的学习我们已经了解了Python的很多基础运用了,现在我们尝试着做一个有使用价值的小脚本. 问题 需求: 我想要一个可以给我备份重要文件的程序. 需求分析: 首先文件是有存储路径,文件的路径和 ...

  6. python项目推荐(转载知乎)

    作者:Wayne Shi链接:https://www.zhihu.com/question/29372574/answer/88744491来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商 ...

  7. Python代码样例列表

    扫描左上角二维码,关注公众账号 数字货币量化投资,回复“1279”,获取以下600个Python经典例子源码 ├─algorithm│       Python用户推荐系统曼哈顿算法实现.py│    ...

  8. Python输入输出及其他

    print用法 print会输出一个\n,也就是换行符,这样光标移动到了下一行行首,接着输出,之前已经通过stdout输出的东西依旧保留,而且保证我们在下面看到最新的输出结果.回车 \r 本义是光标重 ...

  9. Python知乎上推荐的项目

    原文地址:https://www.zhihu.com/question/29372574/answer/88744491 作者:Wayne Shi链接:https://www.zhihu.com/qu ...

随机推荐

  1. AngularJS 模块

    模块定义了一个应用程序. 模块是应用程序中不同部分的容器. 模块是应用控制器的容器. 控制器通常属于一个模块. 你可以通过 AngularJS 的 angular.module 函数来创建模块: &l ...

  2. 使用MyBatis Generator自动创建代码( SSM框架)

    步骤: 1.找到该文件目录 (上图文件下载地址:http://download.csdn.net/download/u014617413/9668872) 2.修改generatorConfig.xm ...

  3. Mac安装软件报“打不开。。。,因为它来自身份不明的开发者”的解决办法

    问题描述 在Mac上安装git,双击pkg进行安装,报如下图错误: 解决办法 不要双击pkg文件,改成选中文件之后,鼠标右键,选择“打开方式->安装器(默认)”,即可继续安装.

  4. STM32F105解密STM32F105VB芯片解密STM32F105R8单片机破解多少钱?

    STM32F105解密STM32F105VB芯片解密STM32F105R8单片机破解 STM32F105芯片Cortex-M3单片机解密: [凯基迪科技] STM32F105R8解密 | STM32F ...

  5. php中session原理及安全性问题

    有一点我们必须承认,大多数web应用程序都离不开session的使用.这篇文章将会结合php以及http协议来分析如何建立一个安全的会话管理机制   我们先简单的了解一些http的知识,从而理解该协议 ...

  6. CodeForces 455D 分块

    题目链接:http://codeforces.com/problemset/problem/455/D 题意:给定一个长度为n的序列a[]. m次操作.共有两种操作 1 l r:将序列的a[l].a[ ...

  7. psql-09表:视图和索引

    视图 由查询语句定义的虚拟表;从视图中看到的数据可能来自数据库中的一张或多张表,也可能来自外部; 使用视图的原因一般有: 使复制的查询易于理解和使用; 安全原因; 表一些函数返回的结果映射成视图; 一 ...

  8. Page-encoding specified in XML prolog (UTF-8) is different from that specified in page directive (utf-8)

    org.apache.jasper.JasperException:xxx.jsp(1,1) Page-encoding specified in XML prolog (UTF-8) is diff ...

  9. Create a REST API with Attribute Routing in ASP.NET Web API 2

    原文:http://www.asp.net/web-api/overview/web-api-routing-and-actions/create-a-rest-api-with-attribute- ...

  10. 服务器响应HTTP的类型ContentType大全

    ".*"="application/octet-stream" ".001"="application/x-001" & ...