- 帖子
- 2
- 精华
- 0
- 积分
- 7
- 阅读权限
- 10
- 注册时间
- 2017-7-26
- 最后登录
- 2017-7-26
|
运行环境windows,代码执行完目标备份路径确实有zip压缩包,不过压缩包里面是空的,cmd单独运行zip命令也是一样输出空压缩包,找不出zip命令哪里出错了,帮忙分析下可能哪里出错了?
import os
import time
source = ['E:\\Python\\back_up_test.txt']
target_dir = 'E:\\Python\\Back_up\\'
target = target_dir + os.sep + \
time.strftime('%Y%m%d%H%M%S') + '.zip'
if not os.path.exists(target_dir):
os.mkdir(target_dir)
zip_command = 'zip -r {0} . -i {1}'.format(target,source)
print('Zip command is:')
print(zip_command)
print('Running:')
if os.system(zip_command) == 0:
print('Successful backup to', target)
else:
print('Backup Failed')
|
-
1.png
(5.05 KB, 下载次数: 393)
|