Methods
CancelDownload Method
Abort the download process.
[Visual Basic]
Sub CancelDownload()
Example
X360FtpClient.CancelDownload
CancelUpload Method
Abort the upload process.
[Visual Basic]
Sub CancelUpload()
Example
X360FtpClient.CancelUpload
CreateFolder Method
Create a new folder or multiple folders on FTP server.
[Visual Basic]
Function CreateFolder( _
ByVal RemoteFolder As String _
) As Integer
Parameters
RemoteFolder
The name of the folder.
Return Value
Zero represents the operation is success. Other values represents the the operation is failure and return the error code.
Example
' Create folder X360soft
X360FtpClient.CreateFolder "//public_html/X360soft"
' Create multiple folder, i.e. Internet and Ftp
X360FtpClient.CreateFolder "//public_html/X360soft/Internet/Ftp"
»
|