网络编程
位置:首页>> 网络编程>> Python编程>> pyinstaller打包后,配置文件无法正常读取的解决

pyinstaller打包后,配置文件无法正常读取的解决

作者:被污染的一张白纸  发布时间:2022-12-17 18:22:09 

标签:pyinstaller,打包,配置文件

pyinstaller打包配置文件无法正常读取

import os
file = os.path.dirname(os.path.abspath(__file__))
cf = configparser.ConfigParser()
print(file)
cf.read(file+'/data.ini')

先获取绝对路径在读取

pyinstaller又踩一坑,configparser os.mknod

在使用pyinstaller时,有使用configparser模块。

使用相对路径。在pycharm中测试,正常,打包成exe,就出错了

换用绝对路径,

print(os.getcwd())
fp_dir=os.getcwd()
print(fp_dir)
fp = fp_dir + '\conf.ini'  # 定义配置文件名
print(fp)

基本正常。

可是遇到了

conf.read(fp)  # 打开conf
    conf.add_section('conf')  # 添加conf节点

不能自动创建文件

尝试os.mknod,windows下根本不支持。

    tes = open(fp,'a')
    tes.close()

用open方法,终于调试成功。

完整代码

def make_conf():
    print('make')
    conf = ConfigParser()  # 实例化
    print('没有配置文件,创建中')
    tes = open(fp, 'a')
    tes.close()
    firefox = str(get_extension(['firefox.exe']))
    geckodriver = str(get_extension(['geckodriver.exe']))
    WeChat = str(get_extension(['WeChat.exe']))
    conf.read(fp)  # 打开conf
    if type!='up':
        conf.add_section('conf')  # 添加conf节点
    print('add section')
    conf.set('conf', 'firefox', firefox)  # 添加值
    conf.set('conf', 'geckodriver', geckodriver)  # 添加值
    conf.set('conf', 'wechat', WeChat)  # 添加值
    # conf.set('conf', 'firefox', '')  # 添加值
    # conf.set('conf', 'geckodriver', '')  # 添加值
    # conf.set('conf', 'wechat', '')  # 添加值
    print('set all', fp)
    with open(fp, 'w') as fw:  # 循环写入
        conf.write(fw)
    return True

来源:https://blog.csdn.net/abzdasfad/article/details/106942892

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com