Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →将旧版 Word 文档(.doc)转换为新版(.docx)。当用户提到 doc 转 docx、旧 Word 转新 Word 时使用。
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-08 | ✗→✓ | ▲ Improved | -46% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 21% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -59% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -55% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -36% | 0% |
> 将 Doc 文件转换为 Docx 文件
将旧版 Word 文档(.doc)转换为新版 Word 文档(.docx)。
office/skills/word/doc2docx/
pythonfrom skills.word import doc2docx doc2docx( input_path='./old.doc', output_path='./', output_name='new.docx' )
也可以直接把目标文件路径传给 output_path:
pythonfrom 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
pythonfrom skills.word import doc2docx doc2docx(input_path='./old.doc', output_path='./new/')
pythonfrom skills.word import doc2docx doc2docx(input_path='./old.doc', output_path='./new/new.docx')
office.api.word.doc2docx
Other measured skills in the registry, with their headline benchmark lift.