오늘은 파일경로가 url 형식인 경우 WebClient를 활용해 로컬 PC에 다운로드 하는 방법을 알아보겠습니다. 1. using 추가 using System.Net; 2. 예제 using System; using System.Net; public class Program { public static void Main() { string fileUrl = @"https://code.jquery.com/jquery-3.6.1.min.js"; using(WebClient wc = new WebClient()) { wc.DownloadFile(fileUrl,@"C\LJH"); // 동기 -- 다운로드 동안 호출 스레드 차단 wc.DownloadFileAsync(new Uri(fileUrl),@"C\LJH\jq..