Implemented ListCommand and DeleteAllCommand.

This commit is contained in:
2025-02-02 22:39:45 +03:30
parent f0339e5c0e
commit d716133230
4 changed files with 196 additions and 2 deletions
+3 -2
View File
@@ -5,6 +5,7 @@ namespace TBDel
internal class Program
{
// TODO: Add a command to show the Db path
// TODO: Add a command to remove a file or folder only from the list
static async Task Main(string[] args)
{
// Show the help message if no arguments are provided
@@ -25,10 +26,10 @@ namespace TBDel
break;
case "deleteall":
await DeleteCommand.DeleteAll();
break;
case "list":
await ListCommand.List(args);
break;
case "help":
HelpCommand.Show();