private void NotifyAllGames(List <string> archivePaths)
 {
     foreach (var archivePath in archivePaths)
     {
         string gameName = GetGameNameFromPath(archivePath);
         _notifier.GameAddedToUploadQueue(gameName);
     }
 }