private async Task ExecuteConsoleCommandDirectoryRemove(Options options)
        {
            var directoryRemoveCommand = new DirectoryRemoveCommand(options);
            await _mediator.Send(directoryRemoveCommand);

            LogInformationMessage($"The directory {directoryRemoveCommand.Path} has been removed");
            _consolePrinter.PrintDirectoryRemovedSuccessfull(directoryRemoveCommand.Path);
        }