Example: ftp_mkdir

In the following example, the ftp_mkdir function creates the directory pub/test.

    // Login to the FTP server 
    ftp_logon ("FTP", "URL=ftp://ftp.abc.com",LAST );
    ftp_mkdir ("Ftp_Mkdir", "PATH=pub/test");
    // Logout from the FTP server 
    ftp_logout();