通过os模块的system()方法调用了系统的rar.exe命令,这个方法会返回一个变量exit_status。

相关推荐:《Python教程》

import os
import time
source = [r‘D:WorkPythonDemo‘, ‘d:worklinux‘]
target_dir = ‘D:Workackup‘
target = target_dir + time.strftime(‘%Y%m%d%H%M%S‘) + ‘.rar‘
zip_command = "rar a %s %s" % (target, ‘ ‘.join(source))
if os.system(zip_command) == 0:
    print ‘Sucessful backup to‘, target
else:
    print ‘Backup Failed‘

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » Python如何调用rar命令