-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClass1.cs
48 lines (37 loc) · 1.65 KB
/
Class1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 原神__启动_
{
class FilesINI
{
// 声明INI文件的写操作函数 WritePrivateProfileString()
[System.Runtime.InteropServices.DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
// 声明INI文件的读操作函数 GetPrivateProfileString()
[System.Runtime.InteropServices.DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, System.Text.StringBuilder retVal, int size, string filePath);
/// 写入INI的方法
public void INIWrite(string section, string key, string value, string path)
{
// section=配置节点名称,key=键名,value=返回键值,path=路径
WritePrivateProfileString(section, key, value, path);
}
//读取INI的方法
public string INIRead(string section, string key, string path)
{
// 每次从ini中读取多少字节
System.Text.StringBuilder temp = new System.Text.StringBuilder(255);
// section=配置节点名称,key=键名,temp=上面,path=路径
GetPrivateProfileString(section, key, "", temp, 255, path);
return temp.ToString();
}
internal System.Windows.Controls.TextBox INIRead(string v1, string v2, System.Windows.Controls.TextBox iNIPath)
{
throw new NotImplementedException();
}
//删除一个INI文件
}
}