Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 492 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 492 Bytes

Config

Code

Usage of Config

//create config
Config config = new Config(/* Path of file */);

//set value
config.set(/* key */, /* value */);

//set value if not exists in config
config.add(/* key */, /* value */);

//save config
config.save();

//reload file content
config.reload();