(Lianja) Determine if Connected and Logged On
The IsConnected property indicates whether or not the FTP component has a valid TCP/IP connection (and is logged on) to the FTP server.
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loFtp = createobject("CkFtp2")
loFtp.Hostname = "ftp.example.com"
loFtp.Username = "mylogin"
loFtp.Password = "mypassword"
// Connect and login to the FTP server.
llSuccess = loFtp.Connect()
if (llSuccess <> .T.) then
? loFtp.LastErrorText
release loFtp
return
endif
// ...
// At any point in an FTP session, the IsConnected property
// can be checked to determine if the component has remained
// connected to the FTP server.
if (loFtp.IsConnected = .T.) then
? "Connected!"
else
? "Not connected!"
endif
// ...
llSuccess = loFtp.Disconnect()
release loFtp
|