Sample code for 30+ languages & platforms
Rust

FTPS / Implicit SSL

See more FTP Examples

Demonstrates how to connect using implicit SSL on port 990. The FTP component connects using SSL on port 990, which is the de-facto standard FTP SSL port. Not all FTP servers support implicit SSL. An alternative is to use AUTH SSL (also called AUTH TLS).

Chilkat Rust Downloads

Rust

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let ftp = chilkat::Ftp2::new();

// If this example does not work, try using passive mode
// by setting this to true.
ftp.set_passive(false);
ftp.set_hostname("ftp.something.com");
ftp.set_username("test");
ftp.set_password("test");
ftp.set_port(990);

// We don't want AUTH SSL:
ftp.set_auth_tls(false);

// We want Implicit SSL:
ftp.set_ssl(true);

// Connect and login to the FTP server.
if ftp.connect().is_err() {
    println!("{}", ftp.last_error_text());
    return;
} else {
    // LastErrorText contains information even when
    // successful. This allows you to visually verify
    // that the secure connection actually occurred.
    println!("{}", ftp.last_error_text());
}

println!("FTPS Channel Established!");

// Do whatever you're doing to do ...
// upload files, download files, etc...

let _ = ftp.disconnect().is_ok();