-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
43 lines (40 loc) · 1.81 KB
/
Program.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
using System;
using CommandLine;
using FluentFTP;
using Ftp.Client.Commands;
namespace Ftp.Client
{
internal class Program
{
public static FtpClient Client;
static void Main(string[] args)
{
Console.WriteLine(@"┌──────────────────────────────────────────────┐
│ │
│ Welcome to ftp.client │
│ │
├──────────────────────────────────────────────┤
│Commands available: │
│ │
│ help, version, connect, disconnect │
│ │
│ fetch-folder, download-folder, upload-file │
│ │
└──────────────────────────────────────────────┘");
while (true)
{
Console.Write("$ ");
var commandText = Console.ReadLine();
if(string.IsNullOrEmpty(commandText))
continue;
var commandArgs = commandText.Split(" ");
if (commandArgs.Length == 0)
{
Console.WriteLine("Invalid args");
continue;
}
Parser.Default.ParseArguments<FetchFolderCommand, FileUploadCommand, DownloadFolderCommand, ExitCommand, ConnectCommand, DisconnectCommand>(commandArgs).WithParsed(t => ((ICommand)t).Execute());
}
}
}
}