pyinstaller 打包程序项目,代码读取文件路径是出现问题解决方式

pyinstaller 打包程序项目,代码读取文件路径是出现问题解决方式

import os
import sys

config_name = 'myapp.cfg'

# determine if application is a script file or frozen exe
if getattr(sys, 'frozen', False):
    application_path = os.path.dirname(sys.executable)
elif __file__:
    application_path = os.path.dirname(__file__)

config_path = os.path.join(application_path, config_name)

你可能感兴趣的:(Python)