参考博文
python获取当前项目所在文件路径(name ‘file‘ is not defined)
原始代码
import os
current_dir = os.path.dirname(os.path.abspath(__file__))
报错
解决方法
import os
current_dir = os.path.dirname(os.path.abspath('file'))
- 运行结果
python获取当前项目所在文件路径(name ‘file‘ is not defined)
import os
current_dir = os.path.dirname(os.path.abspath(__file__))
import os
current_dir = os.path.dirname(os.path.abspath('file'))