■ WebClient 클래스를 사용해 FTP 파일을 다운로드하는 방법을 보여준다.
▶ WebClient 클래스 : FTP 파일 다운로드하기 예제 (C#)
1 2 3 4 5 6 7 8 |
string sourceFileURI = "ftp://sample.iptime.org/download/sample.jpg"; string targetFilePath = "c:\\sample.jpg"; string userID = "ftpid"; string password = "ftppassword"; DownloadFTPFile(sourceFileURI, targetFilePath, userID, password); |
▶ WebClient 클래스 : FTP 파일 다운로드하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
using System.Net; #region FTP 파일 다운로드하기 - DownloadFTPFile(sourceFileURI, targetFilePath, userID, password) /// <summary> /// FTP 파일 다운로드하기 /// </summary> /// <param name="sourceFileURI">소스 파일 URI</param> /// <param name="targetFilePath">타겟 파일 경로</param> /// <param name="userID">사용자 ID</param> /// <param name="password">패스워드</param> /// <returns>처리 결과</returns> public bool DownloadFTPFile(string sourceFileURI, string targetFilePath, string userID, string password) { try { WebClient webClient = new WebClient(); webClient.Credentials = new NetworkCredential(userID, password); webClient.DownloadFile(sourceFileURI, targetFilePath); } catch { return false; } return true; } #endregion |