-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileMonitoringService.cs
More file actions
140 lines (102 loc) · 3.54 KB
/
FileMonitoringService.cs
File metadata and controls
140 lines (102 loc) · 3.54 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
using System;
using System.Configuration;
using System.Diagnostics;
using System.IO;
using System.ServiceProcess;
namespace FileMonitoringService
{
public partial class FileMonitoringService : ServiceBase
{
string _LogDirectory = ConfigurationManager.AppSettings["LogFolder"];
string _LogFilePath;
static string _SourceFolder = ConfigurationManager.AppSettings["SourceFolder"];
static string _DestinationFolder = ConfigurationManager.AppSettings["DestinationFolder"];
FileSystemWatcher _Watcher;
public FileMonitoringService()
{
InitializeComponent();
}
private void OnFileCreated(object sender, FileSystemEventArgs e)
{
string SourceFilePath;
string DestinationFilePath;
try
{
SourceFilePath = e.FullPath;
WriteLog($"File detected : {SourceFilePath}");
if (clsUtilities.MoveFileToDestination(SourceFilePath, _DestinationFolder, out DestinationFilePath))
{
WriteLog($"File moved : {SourceFilePath} -> {DestinationFilePath}");
}
else
{
WriteLog(($"Failed to move : {SourceFilePath}"));
}
}
catch (Exception ex)
{
EventLog.WriteEntry("FileMonitoringService", ex.Message, EventLogEntryType.Error);
}
}
protected override void OnStart(string[] args)
{
CreateSourceAndDestinationFolderIfNotExists();
_Watcher = new FileSystemWatcher(_SourceFolder)
{
NotifyFilter = NotifyFilters.FileName,
Filter = "*.*",
EnableRaisingEvents = true
};
_Watcher.Created += OnFileCreated;
WriteLog("Started Service");
}
protected override void OnStop()
{
WriteLog("Stopped Service");
if (_Watcher != null)
{
_Watcher.EnableRaisingEvents = false;
_Watcher.Dispose();
}
}
private void WriteLog(string Message)
{
CombineFilePath();
string LogMessage = $"[{DateTime.Now:yyyy-MM-dd HH:mm:ss}] {Message}\n";
try
{
File.AppendAllText(_LogFilePath, LogMessage);
}
catch (IOException iox)
{
EventLog.WriteEntry("FileMonitoringService", iox.Message, EventLogEntryType.Error);
}
if (Environment.UserInteractive)
{
Console.WriteLine(LogMessage);
}
}
private void CombineFilePath()
{
if (!Directory.Exists(_LogDirectory))
Directory.CreateDirectory(_LogDirectory);
_LogFilePath = Path.Combine(_LogDirectory, "Logs.txt");
}
public void StartInConsole()
{
Console.WriteLine("Start-Pending...");
OnStart(null);
Console.ReadLine();
Console.WriteLine("Stop-Pending...");
OnStop();
Console.ReadKey();
}
private void CreateSourceAndDestinationFolderIfNotExists()
{
if (!Directory.Exists(_SourceFolder))
Directory.CreateDirectory(_SourceFolder);
if (!Directory.Exists(_DestinationFolder))
Directory.CreateDirectory(_DestinationFolder);
}
}
}