码迷,mamicode.com
首页 > 编程语言 > 详细

python 调用rar命令行 压缩文件

时间:2016-06-04 16:16:26      阅读:774      评论:0      收藏:0      [点我收藏+]

标签:

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

import os
import time

source = [rD:\Work\Python\Demo, d:\\work\\linux]
target_dir = D:\\Work\\backup\\

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

 

python 调用rar命令行 压缩文件

标签:

原文地址:http://www.cnblogs.com/xunbu7/p/5558822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!