반응형 ftp 파일 다운로드1 ftp에서 파일 다운로드 하기(ftp file download) FTP file download FTP 접속하여 파일을 내려받는 코드는 다음만 있으면 된다. Uri ftpUri = new Uri(strDownloadPath); using (WebClient wc = new WebClient()) { wc.BaseAddress = strDownloadPath; wc.Credentials = new NetworkCredential(_ftpUser, _ftpPassword); wc.DownloadFileAsync(ftpUri, downloadPath);//비동기 wc.DownloadFile(ftpUri, localPath);//동기 } 아래 코드는 응용 코드. using System; using System.Collections.Generic; using System.Li.. 2015. 12. 23. 이전 1 다음 반응형