-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPropertiesFile.cs
More file actions
96 lines (90 loc) · 2.72 KB
/
Copy pathPropertiesFile.cs
File metadata and controls
96 lines (90 loc) · 2.72 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
public class PropertiesFile
{
public string FileName = "";
public char separatorChar = '=';
public Dictionary<string, string> DictionaryProperties = new Dictionary<string, string>();
public Dictionary<string, string> GetDictionary() { return DictionaryProperties; }
public Dictionary<string, string> LoadDictionary(string FileName)
{
this.FileName = FileName;
DictionaryProperties.Clear();
string line;
using (StreamReader reader = new StreamReader(FileName))
{
while ((line = reader.ReadLine()) != null)
{
var parts = line.Split(separatorChar);
if (parts.Length == 2 && parts[0] != "")
{
DictionaryProperties.Add(parts[0], parts[1]);
}
}
}
return DictionaryProperties;
}
public void SaveDictionary()
{
using (StreamWriter writer = new StreamWriter(FileName))
{
foreach (var item in DictionaryProperties)
{
writer.WriteLine(item.Key + separatorChar + item.Value);
}
}
}
public void SaveDictionary(string FileName)
{
using (StreamWriter writer = new StreamWriter(FileName))
{
foreach (var item in DictionaryProperties)
{
writer.WriteLine(item.Key + separatorChar + item.Value);
}
}
}
public string GetValueByKey(string Key)
{
string line;
using (StreamReader reader = new StreamReader(FileName))
{
try
{
while ((line = reader.ReadLine()) != null)
{
var parts = line.Split(separatorChar);
if (parts.Length == 2 && parts[0].Equals(Key))
{
return parts[1];
}
}
}
catch { }
}
return null;
}
public string GetKeyByValue(string Value)
{
string line;
using (StreamReader reader = new StreamReader(FileName))
{
try
{
while ((line = reader.ReadLine()) != null)
{
var parts = line.Split(separatorChar);
if (parts.Length == 2 && parts[1].Equals(Value))
{
return parts[0];
}
}
}
catch { }
}
return null;
}
}