您现在的位置是:课程教程文章
Python如何调用rar命令
2023-12-18 22:46课程教程文章 人已围观
通过os模块的system()方法调用了系统的rar.exe命令,这个方法会返回一个变量exit_status。
相关推荐:《Python教程》
import os import time source = [r‘D:\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命令
上一篇:python如何定义和调用函数
下一篇:没有了