将旧版 Word 文档(.doc)转换为新版(.docx)。当用户提到 doc 转 docx、旧 Word 转新 Word 时使用。
72
87%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
将 Doc 文件转换为 Docx 文件
将旧版 Word 文档(.doc)转换为新版 Word 文档(.docx)。
office/skills/word/doc2docx/
from office.skills.word import doc2docx
doc2docx(
input_path='./old.doc',
output_path='./',
output_name='new.docx'
)也可以直接把目标文件路径传给 output_path:
from office.skills.word import doc2docx
doc2docx(
input_path='./old.doc',
output_path='./new/new.docx'
)| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
input_path | str | 是 | - | 输入 Doc 文件的路径 |
output_path | str | 否 | './' | 输出 Docx 文件的路径,可以是输出目录,也可以是完整的 .docx 文件路径 |
output_name | str | 否 | None | 输出 Docx 文件的名称。默认原文件名 |
None
from office.skills.word import doc2docx
doc2docx(input_path='./old.doc', output_path='./new/')from office.skills.word import doc2docx
doc2docx(input_path='./old.doc', output_path='./new/new.docx')office.api.word.doc2docx
2b1996b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.