IniFile.jl
Reading and writing Windows-style INI files from Julia
Usage
Pkg.add("IniFile") # first-time only
using Inifile # load code into current session
Create IniFile
ini = Inifile()
Get defaults & sections of an IniFile
sections(ini)
defaults(ini)
default
if not found
Get specific key from section, return get(ini, "section", "key", default)
Set key for section
set(ini, "section", "key", value)
*.ini
file
Parse a ini = read(Inifile(), "file.ini")
*.ini
file
Write out a open("file.ini", "w+") do io
write(io, ini)
end