用python输入当前路径遍历文件夹中和子文件夹的ts文件 转化为word文件
时间: 2023-04-01 21:03:42 浏览: 112
您好,我可以回答这个问题。您可以使用Python的os和docx库来实现这个功能。具体步骤如下:
1. 导入os和docx库
import os
from docx import Document
2. 定义一个函数,用于遍历文件夹中的ts文件并将其转化为word文件
def convert_ts_to_word(path):
for root, dirs, files in os.walk(path):
for file in files:
if file.endswith('.ts'):
# 读取ts文件内容
with open(os.path.join(root, file), 'r', encoding='utf-8') as f:
content = f.read()
# 创建word文档
doc = Document()
# 将ts文件内容写入word文档
doc.add_paragraph(content)
# 保存word文档
doc.save(os.path.join(root, file.replace('.ts', '.docx')))
3. 调用函数并传入当前路径
convert_ts_to_word(os.getcwd())
这样,当前路径下的所有ts文件都会被转化为word文件,并保存在相同的文件夹中。
阅读全文