用python输入当前路径遍历文件夹中的ts文件 转化为word文件
时间: 2023-04-01 22:03:41 浏览: 91
将Txt转换成word
5星 · 资源好评率100%
您好,我可以回答这个问题。您可以使用Python中的os和docx库来实现这个功能。以下是示例代码:
```python
import os
import docx
# 获取当前路径
current_path = os.getcwd()
# 遍历文件夹中的ts文件
for root, dirs, files in os.walk(current_path):
for file in files:
if file.endswith('.ts'):
# 将ts文件转化为word文件
ts_file_path = os.path.join(root, file)
doc = docx.Document()
with open(ts_file_path, 'r') as f:
text = f.read()
doc.add_paragraph(text)
doc.save(ts_file_path.replace('.ts', '.docx'))
```
这段代码将会遍历当前路径下的所有文件夹,找到所有以.ts结尾的文件,将其转化为word文件并保存在原文件所在的位置。
阅读全文