1 Star 0 Fork 0

jiamn/ofd2img

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ofd2img1.py 680 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiamn 提交于 2024-11-19 14:14 . 增加目标目录
import sys
from core.document import OFDFile
import os
import shutil
doc = OFDFile(sys.argv[1])
paths = doc.draw_document()
#doc.remove_unused_resources()
#print(paths)
if len(sys.argv) < 2:
target_path = os.path.dirname(sys.argv[1])
else:
target_path = sys.argv[2]
if not os.path.exists(target_path):
os.makedirs(target_path)
print(f'Created directory: {target_path}')
for path in paths:
if os.path.dirname(sys.argv[1]) == target_path:
continue
sourcefile = os.path.join(os.curdir, path)
targetfile = os.path.join(target_path, os.path.basename(path))
shutil.move(sourcefile, targetfile)
print(f'Moved {sourcefile} to {targetfile}')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/jiamn/ofd2img.git
git@gitee.com:jiamn/ofd2img.git
jiamn
ofd2img
ofd2img
master

搜索帮助