-
-
Notifications
You must be signed in to change notification settings - Fork 658
/
Copy pathFolderMonitor.cs
49 lines (40 loc) · 1.53 KB
/
FolderMonitor.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
49
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using FluentFTP;
using FluentFTP.Monitors;
namespace Examples {
internal static class FolderMonitorExample {
// Downloads all PDF files from a folder on an FTP server
// when they are fully uploaded (stable)
public static async Task DownloadStablePdfFilesAsync(CancellationToken token) {
var conn = new AsyncFtpClient("127.0.0.1", "ftptest", "ftptest");
await using var monitor = new BlockingAsyncFtpMonitor(conn, new List<string> { "path/to/folder" });
monitor.PollInterval = TimeSpan.FromMinutes(5);
monitor.WaitForUpload = true;
monitor.ChangeDetected = (static async (e) => {
foreach (var file in e.Added
.Where(x => Path.GetExtension(x) == ".pdf")) {
var localFilePath = Path.Combine(@"C:\LocalFolder", Path.GetFileName(file));
await e.AsyncFtpClient.DownloadFile(localFilePath, file, token: e.CancellationToken);
await e.AsyncFtpClient.DeleteFile(file); // don't cancel this operation
}
});
await conn.Connect(token);
await monitor.Start(token);
}
// How to use the monitor in a console application
public static async Task MainAsync() {
using var tokenSource = new CancellationTokenSource();
Console.CancelKeyPress += (_, e) =>
{
e.Cancel = true; // keep running until monitor is stopped
tokenSource.Cancel(); // stop the monitor
};
await DownloadStablePdfFilesAsync(tokenSource.Token);
}
}
}