ini 0.0.6 copy "ini: ^0.0.6" to clipboard
ini: ^0.0.6 copied to clipboard

outdatedDart 1 only

Read and write .ini files

Dart INI #

This library deals with reading and writing ini files. This implements the standard as defined here:

https://en.wikipedia.org/wiki/INI_file

The ini file reader will return data organized by section and option. The default section will be the blank string.

Examples #

Read a file:

import "package:ini/ini.dart";

Config.readFile(new File("config.ini")).then((Config config) => ...);

Write a file:

config.writeFile(new File("config.ini"));

Read options:

// List all sections in the configuration, excluding default.
config.sections();

// List options within a section
config.options("default");
config.options("section");
config.has_section("section");

// List of key value pairs for a section.
config.items("section");

// Read specific options.
config.get("section", "option");
config.has_option("section", "option");

Write options:

// Make sure you add sections before using them.
config.add_section("section");

config.set("section", "option", "value");

config.remove_section("section");

config.remove_option("section", "option");

There is example code in the example/ directory.

22
likes
25
pub points
91%
popularity

Publisher

unverified uploader

Read and write .ini files

Repository (GitHub)
View/report issues

License

LGPL-3.0 (LICENSE)

More

Packages that depend on ini