Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IniFile.jl

IniFile IniFile IniFile 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

About

Reading and writing Windows-style INI files (writing not yet implemented).

Resources

Code of conduct

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages