Reading and writing Windows-style INI files from Julia
Pkg.add("IniFile") # first-time only
using Inifile # load code into current session
ini = IniFile()
sections(ini)
defaults(ini)
default
if not foundget(ini, "section", "key", default)
set(ini, "section", "key", value)
*.ini
fileini = read(IniFile(), "file.ini")
*.ini
fileopen("file.ini", "w+") do io
write(io, ini)
end
11/13/2012
over 1 year ago
44 commits