# 打开文件选择框,选择要打开的txt文件 file_path = filedialog.askopenfilename() 怎么把路径中文件的扩展名改为html
时间: 2024-03-28 18:41:24 浏览: 99
Unity中打开文件窗口(OpenFileDialog)的几种方法
5星 · 资源好评率100%
你可以使用Python的字符串操作来实现这个功能。可以使用replace()函数来替换文件路径中的txt扩展名为html扩展名,代码如下:
```python
import os
# 获取文件路径
file_path = filedialog.askopenfilename()
# 将扩展名替换为html
html_path = os.path.splitext(file_path)[0] + '.html'
```
这里使用了Python自带的os库中的splitext()函数来获取文件名和扩展名,然后将扩展名替换为html。
阅读全文