mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: skip macOS specific metadata directories and files in zip parsing
--bug=1054264 --user=刘瑞斌 【知识库】QA问答对模式,导入在mac上压缩的zip文件,会出现2个乱码文档 https://www.tapd.cn/57709429/s/1679674
This commit is contained in:
parent
bd900118f4
commit
27bc01d442
|
|
@ -132,7 +132,8 @@ class ZipParseQAHandle(BaseParseQAHandle):
|
|||
files = zip_ref.namelist()
|
||||
# 读取压缩包中的文件内容
|
||||
for file in files:
|
||||
if file.endswith('/'):
|
||||
# 跳过 macOS 特有的元数据目录和文件
|
||||
if file.endswith('/') or file.startswith('__MACOSX'):
|
||||
continue
|
||||
with zip_ref.open(file) as f:
|
||||
# 对文件内容进行处理
|
||||
|
|
|
|||
Loading…
Reference in New Issue