import tkinter as tk from tkinter import filedialog import os import sys # 获取当前脚本文件的绝对路径 current_dir = os.path.dirname(os.path.abspath(__file__)) # 添加 utils 目录到模块搜索路径 utils_path = os.path.join(current_dir, '..', 'util') sys.path.append(utils_path) # 导入 example.py 中的函数 from util import get_file_list
时间: 2024-03-12 12:50:31 浏览: 176
详解python tkinter包获取本地绝对路径(以获取图片并展示)
这段代码存在一个语法错误,你不能在同一行同时使用 "as" 和 "from" 关键字导入模块。正确的写法应该是:
```
import tkinter as tk
from tkinter import filedialog
import os
import sys
# 获取当前脚本文件的绝对路径
current_dir = os.path.dirname(os.path.abspath(__file__))
# 添加 utils 目录到模块搜索路径
utils_path = os.path.join(current_dir, '..', 'util')
sys.path.append(utils_path)
# 导入 example.py 中的函数
from util import get_file_list
```
这样就可以顺利地导入所有需要的模块和函数了。
阅读全文