当文件夹不存在时,调用setINISetting将无比耗时
存在时
一个版本差异问题
(这其实算是类型转换的版本不一致了,有人发给我的脚本不同版本运行不一致)
在2014中
iniFile = @"D:abc"
cfg = getINISetting iniFile "111" "222" -- ""
cfg as booleanClass -- Unable to convert: "" to type: BooleanClass
在2022中
iniFile = @"D:abc"
cfg = getINISetting iniFile "111" "222" -- ""
cfg as booleanClass -- undefined