mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-16 12:39:15 +08:00
37 lines
681 B
Go
37 lines
681 B
Go
|
package ini_conf
|
||
|
|
||
|
import "gopkg.in/ini.v1"
|
||
|
|
||
|
func GetIniValue(filePath, Group, Key string) (string, error) {
|
||
|
cfg, err := ini.Load(filePath)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
service, err := cfg.GetSection(Group)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
startKey, err := service.GetKey(Key)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
return startKey.Value(), nil
|
||
|
}
|
||
|
|
||
|
func SetIniValue(filePath, Group, Key, value string) error {
|
||
|
cfg, err := ini.Load(filePath)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
service, err := cfg.GetSection(Group)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
targetKey := service.Key(Key)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
targetKey.SetValue(value)
|
||
|
return cfg.SaveTo(filePath)
|
||
|
}
|