Command FTP_Logout

4D Internet Commands

FTP_Logout

version 6.5


FTP_Logout (ftp_ID) Integer

ParameterTypeDescription
ftp_IDLongintReference to a FTP login
0 = session successfully closed

Function result Integer Error Code

Description

Given a reference to an open FTP session, the FTP_Logout command will disconnect from the server and free any memory used by the session. This command will return the value of zero into the ftp_ID parameter upon successful close of the session.

ftp_ID is the long integer reference to the FTP session established with FTP_Login.

Example

   If (FTP_Login ("ftp.4d.com";"anonymous";vEmailID;vFTP_ID;vFTP_Msg)=1)
      $error:=FTP_Send (vFTP_ID;"My Hard Drive:Documents:Sales Report";"/pub/reports";1)
      $error:=FTP_Logout (vFTP_ID)
   End if 

See Also

FTP_Login.