IniFile.jl

Reading and writing Windows-style INI files (writing not yet implemented).
Popularity
14 Stars
Updated Last
1 Year Ago
Started In
November 2012

IniFile.jl

Build Status

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)

Get specific key from section, return default if not found

get(ini, "section", "key", default)

Set key for section

set(ini, "section", "key", value)

Parse a *.ini file

ini = read(Inifile(), "file.ini")

Write out a *.ini file

open("file.ini", "w+") do io
    write(io, ini)
end

Required Packages

No packages found.