想象一下这个困境:您正在编写一个使用 PyInstaller 捆绑到 EXE 中的 Python 应用程序,并且它取决于其目录中的 .cfg 文件。不幸的是,使用 sys.path[0] 构建路径的常用方法在 EXE 中失败。有没有一种解决方法可以可靠地确定应用程序的路径?
嗯,这里有一个绝妙的解决方案:
import os import sys config_name = 'myapp.cfg' # First, we check if the application is running as a script or as an EXE: if getattr(sys, 'frozen', False): # If frozen as an EXE, we extract the path from sys.executable: application_path = os.path.dirname(sys.executable) else: # If it's a script file (i.e., not frozen as an EXE), we use __file__: application_path = os.path.dirname(__file__) # Finally, we join the path and the config file name to create the complete path: config_path = os.path.join(application_path, config_name)
这个聪明的技巧利用了 Python 的 file 属性,该属性仅作为脚本运行时定义,以及 sys 模块中的“frozen”属性,该属性指示应用程序是否冻结为 EXE。它可以优雅地处理这两种情况,即使在 EXE 环境中也能提供强大的解决方案来定位您的配置文件。
以上是如何在 PyInstaller 生成的 EXE 中查找应用程序路径?的详细内容。更多信息请关注PHP中文网其他相关文章!