- 帖子
- 20
- 精华
- 0
- 积分
- 166
- 阅读权限
- 20
- 注册时间
- 2018-10-15
- 最后登录
- 2019-4-13
|
- import os
- import time
- # 1. 需要备份的文件与目录将被
- # 指定在一个列表中。
- source = [r'C:\Users\Dong\Desktop\August']
- # 2. 备份文件必须存储在一个
- # 主备份目录中
- target_dir = r'C:\Users\Dong\Desktop\August2'
- # 要记得将这里的目录地址修改至你将使用的路径
- # 如果目标目录还不存在,则进行创建
- if not os.path.exists(target_dir):
- os.mkdir(target_dir) # 创建目录
- # 3. 备份文件将打包压缩成zip文件。
- # 4. 将当前日期作为主备份目录下的
- # 子目录名称
- today = target_dir + os.sep + time.strftime('%Y%m%d')
- # 将当前时间作为 zip 文件的文件名
- now = time.strftime('%H%M%S')
- # 添加一条来自用户的注释以创建
- # zip 文件的文件名
- comment = input('Enter a comment --> ')
- # 检查是否有评论键入
- if len(comment) == 0:
- target = today + os.sep + now + '.zip'
- else:
- target = today + os.sep + now + '_'+ comment.replace(' ', '_') + '_' + '.zip'
- # 如果目标目录不存在则创建目录,Windows下不要这部分,因为能自动创建且重复创建会报错
- #if not os.path.exists(today):
- #os.mkdir(today)
- #print('Successfully created directory', today)
- # 5. 我们使用 zip 命令将文件打包成zip格式
- zip_command = 'zip - r {0} {1}'.format(target, ''.join(source))
- #zip_command = 'zip - r {0} {1}'.format(target,source[0])
- # 运行备份
- print('zip_command is:')
- print(zip_command)
- print('Running:')
- if os.system(zip_command) == 0:
- print('successful backup to', target)
- else:
- print('bacup failed')
- print('Done')
复制代码 Enter a comment --> 5 6 5 7
zip_command is:
zip - r C:\Users\Dong\Desktop\August2\20190119\173538_5_6_5_7__.zip C:\Users\Dong\Desktop\August
Running:
zip warning: name not matched: r
zip warning: name not matched: C:\Users\Dong\Desktop\August2\20190119\173538_5_6_5_7__.zip
zip error: Interrupted (aborting)
bacup failed
Done
|
|