1. 程式人生 > >C#操作INI文件之Vini.cs的使用

C#操作INI文件之Vini.cs的使用

write 相對路徑 ref true rop except enc ram pat

目錄

  • 概要
  • Constructor 構造器
    • VINI(string)
  • Properties 屬性
    • IniFilePath
    • isFileExistence
    • DefaultText
  • Methods 方法
    • SetPath
    • Read
    • Write

Write

概要

VINI.cs是用於對INI文件進行讀寫的類。

Constructor 構造器

VINI(string)

使用文件路徑初始化類
Parameters
filepath [string]
目標INI文件的路徑
Exceptions
None
Notice
不保證目標文件一定可以打開

Properties 屬性

IniFilePath

Property Value
[string]
目標INI文件的路徑

isFileExistence

Property Value
[boolean]
true - 目標文件存在
false - 目標文件不存在

DefaultText

Property Value
[string]
當找不到目標鍵值時返回的默認字符串

Methods 方法

SetPath

設置目標文件路徑
Parameters
path [string]
目標INI文件路徑
Returns
[bool]
true - 目標文件存在
false - 目標文件不存在
Notices
輸入相對路徑,已自動加入 “./”

Read

讀取一個鍵值
Parameter
· Section [string]
節名
· Key [string]
鍵名
Returns
[string]
讀取到的鍵值
Exceptions
當未設置文件路徑時
Notices
如果讀取不到對應的鍵值,返回 VINI.DefaultText

Write

Parameters
· Section [string]
節名
· Key [string]
鍵名
· Value [string]
寫入的值
Returns


[boolean]
true - 寫入成功
false - 寫入失敗
Exceptions
當未設置文件路徑時

C#操作INI文件之Vini.cs的使用