मुझे Python3 के साथ एक INI फ़ाइल पढ़ने, लिखने और बनाने की आवश्यकता है।
FILE.INI
default_path = "/path/name/"
default_file = "file.txt"
पायथन फ़ाइल:
# Read file and and create if it not exists
config = iniFile( 'FILE.INI' )
# Get "default_path"
config.default_path
# Print (string)/path/name
print config.default_path
# Create or Update
config.append( 'default_path', 'var/shared/' )
config.append( 'default_message', 'Hey! help me!!' )
अद्यतन की गई फ़ाइल
default_path = "var/shared/"
default_file = "file.txt"
default_message = "Hey! help me!!"
[foobar]
।