import ConfigParser import os,sys class Conf_Write_Read(): def __init__(self,src=""): self.src = src self.cfg = ConfigParser.ConfigParser(allow_no_value=True) self.safecfg = Conf_Write_Read self.cfg.read(self.src) def get_conf_section(self): return self.cfg.sections() def get_conf_items(self,section): return self.cfg.items(section) def get_conf_options(self,section): return self.cfg.options(section) def write_conf_section(self,section): self.cfg.add_section(section) def write_conf_item(self,section,key,value,dst): cfg = ConfigParser.SafeConfigParser() cfg.set(section,key,value) with open(dst,‘wb‘) as cfgFile: cfg.write(cfgFile)
时间: 2024-12-09 22:49:01