4 Star 5 Fork 3

春秋/DBAS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
loadconfig.py 609 Bytes
一键复制 编辑 原始数据 按行查看 历史
春秋 提交于 2015-09-09 16:16 . DBAS
#!/usr/bin/env python3
# coding: utf-8
"""
加载系统配置
"""
__author__ = 'MC'
from os import path
import xml.etree.ElementTree as Etree
__ConfigFile = path.split(path.realpath(__file__))[0] + "/Config/Config.xml"
__Tree = Etree.parse(__ConfigFile)
__Root = __Tree.getroot()
# 系统配置项
# 默认备份目录地址
BackupFilePath = __Root.find('backuppath').text
# 系统环境
System = __Root.find('system').text
# 配置文件存放目录
ConfigPath = path.split(path.realpath(__file__))[0] + "/Config"
# 日志文件存放目录
LogPath = path.split(path.realpath(__file__))[0] + "/Log"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/saap/DBAS.git
git@gitee.com:saap/DBAS.git
saap
DBAS
DBAS
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385