C# 클래스 LitDev.LDftp

파일 보기 프로젝트 열기: litdev1/LitDev

공개 메소드들

메소드 설명
Delete ( Primitive remoteFile, Primitive ftpServerIP, Primitive ftpUserID, Primitive ftpPassword ) : Primitive

Delete a file by ftp.

Download ( Primitive localFile, Primitive remoteFile, Primitive ftpServerIP, Primitive ftpUserID, Primitive ftpPassword ) : Primitive

Download a file by ftp.

ListFiles ( Primitive remoteFolder, Primitive ftpServerIP, Primitive ftpUserID, Primitive ftpPassword ) : Primitive

Get a remote folder listing by ftp (non async only).

Upload ( Primitive localFile, Primitive remoteFile, Primitive ftpServerIP, Primitive ftpUserID, Primitive ftpPassword ) : Primitive

Upload a file by ftp.

비공개 메소드들

메소드 설명
DoDelete ( Object obj ) : void
DoDownload ( Object obj ) : void
DoUpload ( Object obj ) : void

메소드 상세

Delete() 공개 정적인 메소드

Delete a file by ftp.
public static Delete ( Primitive remoteFile, Primitive ftpServerIP, Primitive ftpUserID, Primitive ftpPassword ) : Primitive
remoteFile Primitive The full path (on server) to the remote file to delete.
ftpServerIP Primitive The ftp server address (or IP).
ftpUserID Primitive The user ID.
ftpPassword Primitive The user password.
리턴 Primitive

Download() 공개 정적인 메소드

Download a file by ftp.
public static Download ( Primitive localFile, Primitive remoteFile, Primitive ftpServerIP, Primitive ftpUserID, Primitive ftpPassword ) : Primitive
localFile Primitive The full path to the local file to download.
remoteFile Primitive The full path (on server) to the remote file to download.
ftpServerIP Primitive The ftp server address (or IP).
ftpUserID Primitive The user ID.
ftpPassword Primitive The user password.
리턴 Primitive

ListFiles() 공개 정적인 메소드

Get a remote folder listing by ftp (non async only).
public static ListFiles ( Primitive remoteFolder, Primitive ftpServerIP, Primitive ftpUserID, Primitive ftpPassword ) : Primitive
remoteFolder Primitive The full path (on server) to the remote folder to list.
ftpServerIP Primitive The ftp server address (or IP).
ftpUserID Primitive The user ID.
ftpPassword Primitive The user password.
리턴 Primitive

Upload() 공개 정적인 메소드

Upload a file by ftp.
public static Upload ( Primitive localFile, Primitive remoteFile, Primitive ftpServerIP, Primitive ftpUserID, Primitive ftpPassword ) : Primitive
localFile Primitive The full path to the local file to upload.
remoteFile Primitive The full path (on server) to the remote file to upload.
ftpServerIP Primitive The ftp server address (or IP).
ftpUserID Primitive The user ID.
ftpPassword Primitive The user password.
리턴 Primitive