ConfigParserメインファイルにセクションがあるかどうかを確認するにはどうすればよいですか、
そして、それが新しいセクションを追加しない場合は?
私はこのコードで試しています:
import ConfigParser
config = ConfigParser.ConfigParser()
#if the config file don´t has the section 'globel', then add it to the config-file
if not config.has_section("globel"):
config.add_section("globel")
config.set("globel", "settings", "someting")
config.write(open("/tmp/myfile.conf", "w"))
print "The new sestion globel is now added!!"
#else just return the the value of globle->settings
else:
config.read("/tmp/myfile.conf")
print "else... globle->settings == "+config.get("globel", "settings")
セクションを確認する前に、構成ファイルを読む必要があります。行を入れて
config.read("/tmp/myfile.conf")
直後
config = ConfigParser.ConfigParser()
設定ファイルがまだ存在していなくてもエラーではありません。