This repository was archived by the owner on Nov 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
FTP
Andrew Lambert edited this page May 8, 2014
·
2 revisions
The FTP module contains classes, methods, etc. relating to the FTP protocol.
ASCIIMode=2BinaryMode=1EBCDICMode=4LocalMode=3
-
ChildOfParent(Child As FolderItem, Parent As FolderItem) As BooleanReturnsTrueif the Child folderitem is under the Parent folderitem directory. -
CRLF() As StringReturns an ASCII carriage return and linefeed (FTP's EOL) -
FTPCodeToMessage(Code As Integer) As StringReturns the human-readable message associated with the specified FTP response code. -
IPv4_to_PASV(IPv4 As String, Port As Integer) As StringConverts an IPv4 dotted notation address and port number (e.g. 192.168.1.1:21) into FTP notation (e.g. 192,168,1,1,0,21) -
PASV_to_IPv4(PASVParams As String) As StringConverts an FTP notation IP address and port number (e.g. 192,168,1,1,0,21) into dotted IP notation (e.g. 192.168.1.1:21) -
PathDecode(Path As String) As StringDecodes embedded special-meaning characters in file paths. -
PathEncode(Path As String) As StringEncodes embedded special-meaning characters in file paths. -
SocketErrorMessage(Sender As SocketCore) As StringReturns a human-readable message corresponding to the LastErrorCode of the passed SocketCore subclass.
-
FTPListEntryContains information parsed from a LIST command result. -
FTPVerbContains the Verb and arguments of a single FTP command.