-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFileLogic.cs
More file actions
59 lines (55 loc) · 1.44 KB
/
FileLogic.cs
File metadata and controls
59 lines (55 loc) · 1.44 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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace task_2
{
internal class FileLogic
{
private readonly string filePath;
public FileLogic(string fileName)
{
string baseDir = AppDomain.CurrentDomain.BaseDirectory;
string subfolder = Path.Combine(baseDir, "Data");
if (!Directory.Exists(subfolder))
{
Directory.CreateDirectory(subfolder);
}
filePath = Path.Combine(subfolder, fileName);
}
public string LoadData()
{
if (File.Exists(filePath))
{
using (StreamReader reader = new StreamReader(filePath))
{
return reader.ReadToEnd();
}
}
else
{
CreateFile();
return "";
}
}
public void SaveData(string data)
{
using (StreamWriter writer = new StreamWriter(filePath))
{
writer.Write(data);
}
}
private void CreateFile()
{
using (FileStream fs = File.Create(filePath))
{
using (StreamWriter writer = new StreamWriter(fs))
{
writer.Write("");
}
}
}
}
}