当前位置:  编程技术>python

python使用7z解压软件备份文件脚本分享

    来源: 互联网  发布时间:2014-09-04

    本文导语:  要求安装: 1.Python2.7z解压软件 backup_2.py 代码如下:# Filename: backup_2.py '''Backup files.    Version: V2, based on Python 3.3    Usage: backup.py -s:"dir1|dir2|..." -t:"target_dir" [-c:"comment"]        -s: The source directories.        -t: The target direct...

要求安装:

1.Python
2.7z解压软件

backup_2.py

代码如下:

# Filename: backup_2.py

'''Backup files.
    Version: V2, based on Python 3.3
    Usage: backup.py -s:"dir1|dir2|..." -t:"target_dir" [-c:"comment"]
        -s: The source directories.
        -t: The target directory.
        -c: Optional, any comment.
    Examples:
        backup.py -s:"c:\src\F1|c:\src\F2|c:\src\F 3" -t:"c:\backup"
        backup.py -s:"c:\src\F 3" -t:"c:\backup" -c:"For sample"'''

import os
import sys
import time

# Read sys.argv
print(sys.argv)
if len(sys.argv) < 2:
    print(__doc__)
    sys.exit()

source=[]
target_dir=''
comment=''
for arg in sys.argv:
    if arg.startswith('-s:'):
        source=arg[3:].split('|')
        print(source)
    elif arg.startswith('-t:'):
        target_dir=arg[3:]+os.sep
        print(target_dir)
    elif arg.startswith('-c:'):
        comment=arg[3:]
        print(comment)

for i in range(0, len(source)):
    source[i] = """ + source[i] + """
    print(source[i])

# Make the file name with the time and comment
today=target_dir+time.strftime('%Y%m%d')
now=time.strftime('%H%M%S')

if len(comment)==0: # check if a comment was entered
    target=today+os.sep+now+'.7z'
else:
    target=today+os.sep+now+'_'+
            comment.replace(' ','_')+'.7z'

# Create the subdirectory by day
if not os.path.exists(today):
    os.mkdir(today) # make directory
    print('Successfully created directory',today)

# zip command
zip_command="7z a %s %s" %(target,' '.join(source))
print(zip_command)

# Run the backup
if os.system(zip_command)==0:
    print('Successful backup to',target)
else:
    print('Backup FAILED')


    
 
 

您可能感兴趣的文章:

  • shell脚本中执行python脚本并接收其返回值的例子
  • Shell,Python,Jython,Perl都是脚本语言,如何选择?
  • 用Python脚本生成Android SALT扰码的方法
  • linux系统使用python监控apache服务器进程脚本分享
  • 写了个监控nginx进程的Python脚本
  • 使用python编写批量卸载手机中安装的android应用脚本
  • java直接调用python脚本的例子
  • linux系统使用python监测系统负载脚本分享
  • linux系统使用python获取内存使用信息脚本分享
  • 使用python检测手机QQ在线状态的脚本代码
  • 使用python编写android截屏脚本双击运行即可
  • Python Mysql自动备份脚本
  • Python抓取Discuz!用户名脚本代码
  • linux系统使用python获取cpu信息脚本分享
  • linux下如何运行带参数的python脚本
  • python备份文件以及mysql数据库的脚本代码
  • WEB前端 iis7站长之家
  • Python linecache.getline()读取文件中特定一行的脚本
  • 使用python编写脚本获取手机当前应用apk的信息
  • Python获取脚本所在目录的正确方法
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • python在windows下实现备份程序实例
  • Python备份Mysql脚本
  • python实现数通设备tftp备份配置文件示例
  • Python GUI编程:tkinter实现一个窗口并居中代码
  • 让python同时兼容python2和python3的8个技巧分享
  • Python不使用print而直接输出二进制字符串
  • 使用setup.py安装python包和卸载python包的方法
  • Python中实现json字符串和dict类型的互转
  • 不小心把linux自带的python卸载了,导致安装一个依赖原python的软件不能安装,请问该怎么办?
  • python异常信息堆栈输出到日志文件
  • Python开发者社区整站源码 Pythoner
  • python下用os.execl执行centos下的系统时间同步命令ntpdate
  • python读取csv文件示例(python操作csv)
  • Python namedtuple对象json序列化/反序列化及对象恢复
  • python基础教程之python消息摘要算法使用示例
  • Python获取网页编码的方法及示例代码
  • 新手该如何学python怎么学好python?
  • Python异常模块traceback用法举例
  • 使用python删除nginx缓存文件示例(python文件操作)
  • python之平台独立的调试工具winpdb介绍
  • python学习手册中的python多态示例代码
  • 基于Python的Html/xml解析库Beautiful Soup 4.2.1发布
  • 请教:system("C:\python2.4\python.exe C:\aa.py");该语句有何错误?为什么运行界面一闪就消失了并且没有运行完,请给出正确语句!
  • 测试Python内部类型及type和isinstance用法区别
  • python版本的问题


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3