Author Topic: Download File from URL  (Read 3334 times)

FR4NK7Y

  • Newbie
  • *
  • Posts: 11
Download File from URL
« on: July 20, 2022, 05:42:16 PM »
I dont know anything about C#. But this works for me.

Code: [Select]
using System;
using System.Net;
public class VAInline
{
public void main()
{
WebClient Client = new WebClient ();
Client.DownloadFile("https://URL.to/FILE.ext", @"X:\Download\Path\File.ext");
}
}