Add a command to remove a file or folder only from the list

This commit is contained in:
2025-02-26 15:23:09 +03:30
parent c4e8945371
commit 9744b2a788
4 changed files with 51 additions and 1 deletions
+3 -1
View File
@@ -4,7 +4,6 @@ namespace TBDel
{
internal class Program
{
// 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
@@ -27,6 +26,9 @@ namespace TBDel
case "deleteall":
await DeleteAllCommand.DeleteAll();
break;
case "rmflist":
await RemoveFromListCommand.DeleteEntryFromList(args);
break;
case "list":
await ListCommand.List(args);
break;