■ FtpWebRequest 클래스를 사용해 FTP 파일을 삭제하는 방법을 보여준다.
▶ FtpWebRequest 클래스 : FTP 파일 삭제하기 예제 (C#)
1 2 3 4 5 6 7 |
string targetFileURI = "ftp://sample.iptime.org/upload/sample.jpg"; string userID = "ftpid"; string password = "ftppassword"; DeleteFTPFile(targetFileURI, 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 |
using System.Net; #region FTP 파일 삭제하기 - DeleteFTPFile(targetURI, userID, password) /// <summary> /// FTP 파일 삭제하기 /// </summary> /// <param name="userID">사용자 ID</param> /// <param name="password">패스워드</param> /// <param name="targetURI">타겟 URI</param> /// <returns>처리 결과</returns> public bool DeleteFTPFile(string targetURI, string userID, string password) { try { FtpWebRequest ftpWebRequest = WebRequest.Create(targetURI) as FtpWebRequest; ftpWebRequest.Credentials = new NetworkCredential(userID, password); ftpWebRequest.Method = WebRequestMethods.Ftp.DeleteFile; FtpWebResponse ftpWebResponse = ftpWebRequest.GetResponse() as FtpWebResponse; } catch { return false; } return true; } #endregion |