用python遍历文件夹中的ts文件 转化为word文件
时间: 2023-04-01 07:03:38 浏览: 139
你好,这个问题可以使用Python的os和docx库来实现。首先,使用os库中的walk函数遍历文件夹中的ts文件,然后使用docx库将ts文件转化为word文件。具体实现可以参考以下代码:
```python
import os
from docx import Document
def ts_to_word(folder_path):
for root, dirs, files in os.walk(folder_path):
for file in files:
if file.endswith('.ts'):
ts_path = os.path.join(root, file)
word_path = os.path.join(root, file.replace('.ts', '.docx'))
document = Document()
with open(ts_path, 'r') as f:
for line in f:
document.add_paragraph(line.strip())
document.save(word_path)
```
其中,folder_path为要遍历的文件夹路径。使用os.walk函数遍历文件夹中的所有文件和子文件夹,如果文件名以.ts结尾,则将其转化为word文件。使用Document类创建一个空的word文档,然后读取ts文件中的内容,逐行添加到word文档中,并保存为docx格式。
阅读全文