所以我正在创建一个Python程序,它读取一个.ini文件来为主程序设置一些启动变量。我唯一的想法是,我希望程序在初始化时检查.ini文件是否存在,如果不存在,则使用一组默认值创建它。如果有人意外删除了该文件,那就是一种先发制人的错误修复。
我似乎无法找到任何有关如何执行此操作的示例,而且我对Python没有超级经验(仅使用它编程大约一周)所以我很感激任何帮助:)
编辑:经过进一步思考,我想进一步追求这一点。
我们假设文件确实存在。如何检查以确保它具有适当的部分?如果它没有相应的部分,我将如何删除文件或删除内容并重写文件的内容?
我试图用这个白痴证明:P
答案 0 :(得分:8)
您可以使用ConfigParser和OS库,这是一个简单的示例:
#!usr/bin/python
import configparser, os
config = configparser.ConfigParser()
# Just a small function to write the file
def write_file():
config.write(open('config.ini', 'w'))
if not os.path.exists('config.ini'):
config['testing'] = {'test': '45', 'test2': 'yes'}
write_file()
else:
# Read File
config.read('config.ini')
# Get the list of sections
print config.sections()
# Print value at test2
print config.get('testing', 'test2')
# Check if file has section
try:
config.get('testing', 'test3')
# If it doesn't i.e. An exception was raised
except configparser.NoOptionError:
print "NO OPTION CALLED TEST 3"
# Delete this section, you can also use config.remove_option
# config.remove_section('testing')
config.remove_option('testing', 'test2')
write_file()
<强>输出强>:
[DEFAULT]
test = 45
test2 = yes
上面的链接是了解有关编写配置文件和其他内置模块的更多信息非常有用的文档。
注意:我是python的新手,所以如果有人知道更好的方法让我知道我会编辑我的答案!