-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProperties.cs
More file actions
104 lines (88 loc) · 2.87 KB
/
Properties.cs
File metadata and controls
104 lines (88 loc) · 2.87 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
97
98
99
100
101
102
103
104
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace deskdecorator.tools
{
public class Properties
{
private Dictionary<String, String> list = null!;
private String filename = null!;
public Properties(String file)
{
reload(file);
}
public String get(String field, String defValue)
{
return (get(field) == null) ? (defValue) : (get(field));
}
public String get(String field)
{
return (list.ContainsKey(field)) ? (list[field]) : (null)!;
}
public void set(String field, Object value)
{
if (!list.ContainsKey(field))
list.Add(field, value.ToString()!);
else
list[field] = value.ToString()!;
}
public void Save(String filename)
{
this.filename = filename;
if (!System.IO.File.Exists(filename))
{
using (var stream = System.IO.File.Create(filename)) { }
}
using (var file = new System.IO.StreamWriter(filename))
{
foreach (String prop in list.Keys.ToArray())
{
if (!String.IsNullOrWhiteSpace(list[prop]))
file.WriteLine($"{prop}={list[prop]}");
}
}
}
public void reload(String filename)
{
this.filename = filename;
list = new Dictionary<String, String>();
if (System.IO.File.Exists(filename))
{
loadFromFile(filename);
}
else
{
using (var stream = System.IO.File.Create(filename)) { }
}
}
private void loadFromFile(String file)
{
foreach (String line in System.IO.File.ReadAllLines(file))
{
if ((!String.IsNullOrEmpty(line)) &&
(!line.StartsWith(";")) &&
(!line.StartsWith("#")) &&
(!line.StartsWith("'")) &&
(line.Contains('=')))
{
int index = line.IndexOf('=');
String key = line.Substring(0, index).Trim();
String value = line.Substring(index + 1).Trim();
if ((value.StartsWith("\"") && value.EndsWith("\"")) ||
(value.StartsWith("'") && value.EndsWith("'")))
{
value = value.Substring(1, value.Length - 2);
}
try
{
//ignore dublicates
list.Add(key, value);
}
catch { }
}
}
}
}
}