Settings.Path (gb.settings)
Property Read Path As String
该属性返回存储设置配置文件的缺省目录。
该示例将显示应用程序的缺省设置文件内容。
Examples
PUBLIC SUB ButtonSettings_Click()
PRINT File.Load(Settings.Path &/ Application.Name & ".conf")
CATCH
Message.Error(Error.Text)
END
注意,当读取文件时需要捕获任何可能的错误。应用程序第一次运行或用户可能删除了文件时会导致设置文件不存在。