■ FtpWebRequest 클래스를 사용해 FTP 리스트를 구하는 방법을 보여준다.
▶ FtpWebRequest 클래스 : FTP 리스트 구하기 예제 (C#)
1 2 3 4 5 6 7 |
string targetURI = "ftp://sample.iptime.org/download"; string userID = "ftpid"; string password = "ftppassword"; List<string> list = GetFTPList(targetURI, userID, password); |
▶ FtpWebRequest 클래스 : 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
using System.Collections.Generic; using System.IO; using System.Net; #region FTP 리스트 구하기 - GetFTPList(targetURI, userID, password) /// <summary> /// FTP 리스트 구하기 /// </summary> /// <param name="targetURI">타겟 URI</param> /// <param name="userID">사용자 ID</param> /// <param name="password">패스워드</param> /// <returns>FTP 리스트</returns> public List<string> GetFTPList(string targetURI, string userID, string password) { try { FtpWebRequest ftpWebRequest = WebRequest.Create(targetURI) as FtpWebRequest; ftpWebRequest.Credentials = new NetworkCredential(userID, password); ftpWebRequest.Method = WebRequestMethods.Ftp.ListDirectory; StreamReader streamReader = new StreamReader(ftpWebRequest.GetResponse().GetResponseStream()); List<string> list = new List<string>(); while(true) { string fileName = streamReader.ReadLine(); if(string.IsNullOrEmpty(fileName)) { break; } list.Add(fileName); } streamReader.Close(); return list; } catch { return null; } } #endregion |