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

时间:2023-05-22 19:30:29 

要求安装:

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')

标签:python,7z,解压软件
0
投稿

猜你喜欢

  • Python数据可视化之用Matplotlib绘制常用图形

    2023-04-05 07:10:46
  • 对tensorflow中cifar-10文档的Read操作详解

    2022-08-10 06:59:10
  • Go语言拼接URL路径的三种方法

    2024-05-08 10:14:11
  • 关于VSCode 配置使用 PyLint 语法检查器的问题

    2023-06-18 17:10:33
  • Vue express鉴权零基础入门

    2024-05-13 09:11:29
  • 详解非极大值抑制算法之Python实现

    2021-02-24 06:41:32
  • Python操作PDF实现制作数据报告

    2022-05-09 21:41:51
  • Python实现JS解密并爬取某音漫客网站

    2022-03-28 03:32:06
  • vue混入mixin流程与优缺点详解

    2024-05-02 16:35:12
  • Python 的赋值,浅拷贝和深拷贝详解

    2023-08-18 12:28:04
  • python集合用法实例分析

    2021-10-26 23:36:37
  • python中使用.py配置文件的方法详解

    2022-02-13 19:57:22
  • 树莓派4B安装Tensorflow的方法步骤

    2023-09-05 17:28:06
  •  Python错误与异常处理

    2022-10-28 01:10:33
  • js 替换功能函数,用正则表达式解决,js的全部替换

    2024-04-17 09:56:35
  • 解析python高级异常和运算符重载

    2021-06-17 00:56:41
  • Python3以GitHub为例来实现模拟登录和爬取的实例讲解

    2022-01-17 14:52:02
  • Oracle性能究极优化 下

    2010-07-30 13:25:00
  • python实现人人网登录示例分享

    2022-06-25 09:17:51
  • pytorch sampler对数据进行采样的实现

    2023-02-09 20:05:40
  • asp之家 网络编程 m.aspxhome.com