加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
压缩文件_python.txt 779 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenhlb 提交于 2017-09-27 18:44 . cocos2dx笔记
1. 将WinRAR的目录("C:\Program Files\WinRAR\")添加到系统环境变量Path中,否则无法识别rar命令.
2. 使用 os.system()命令来执行压缩.
举例:test.py文件内容如下:
import os
import os.path
import sys
#压缩目录/文件
def zip_files(target_path, source_path, bDeleteAfterZip):
#注意:rar命令打包的zip在cocos2dx无法解析!!!
#zip_command = "rar a -ep1 -r -ad %s %s" %(target_path, ''.join(source_path))
zip_command = "WinRAR a -ep1 -r -y {0} {1}".format(target_path, source_path)
if bDeleteAfterZip:
#zip_command = "rar a -ep1 -r -ad -dw %s %s" %(target_path, ''.join(source_path))
zip_command = "WinRAR a -ep1 -r -dw -y {0} {1}".format(target_path, source_path)
assert os.system(zip_command)==0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化