C# WebClient downloads only 1 file.

This page summarizes the projects mentioned and recommended in the original post on /r/AskProgramming

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • notepad-plus-plus

    Notepad++ official repository

  • using System; using System.Collections.Generic; using System.Net; using System.IO; using System.Threading.Tasks; namespace httpclient { internal class Program { private static string firefoxUri = "https://download.mozilla.org/?product=firefox-stub&os=win&lang=en-US"; private static string notepadPlusPlusUri = "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.1.9/npp.8.1.9.Installer.exe"; private static string downloadLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "DownloadTest","Application.exe"); private static async Task Main(string[] args) { await StartWebClient(); } private static async Task StartWebClient() { var allUris = new List() {firefoxUri, notepadPlusPlusUri}; // Initialize new WebClient instance. using WebClient client = new(); foreach (var uri in allUris) { await client.DownloadFileTaskAsync(new Uri(uri),downloadLocation); } } } }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Open-Shell: A collection of utilities bringing back classic features to Windows

    4 projects | news.ycombinator.com | 24 Apr 2024
  • Regex is not your enemy

    1 project | dev.to | 31 Dec 2023
  • Anybody have surfcam experience?

    1 project | /r/Machinists | 7 Dec 2023
  • i cant open my ecg files

    1 project | /r/Polarfitness | 6 Dec 2023
  • I wrote my bibliography manually (Dont ask why). How do I sort it by the first letter of each entry?

    2 projects | /r/LaTeX | 6 Dec 2023