Sample code for 30+ languages & platforms
Rust

Get an FTP Listing Entry's Size (32-bit)

See more FTP Examples

Demonstrates the Chilkat Ftp2.GetSize method, which returns the size in bytes of a cached directory-listing entry as a 32-bit integer. The only argument is a zero-based index. It returns -1 when the index is invalid or the size is unavailable.

Background: The size comes from the cached listing, so reading it for every entry costs no extra round trips. A 32-bit result cannot represent files past about 2 GB, so use GetSize64 (or GetSizeStr) when large files are possible. Directories often report no meaningful size and come back as -1, which is why the -1 case is worth handling rather than printing blindly.

Chilkat Rust Downloads

Rust

// Demonstrates the Ftp2.GetSize method, which returns the size in bytes of a cached
// directory-listing entry as a 32-bit integer.  The only argument is a zero-based index.

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

ftp.set_hostname("ftp.example.com");
ftp.set_username("myFtpLogin");

// Normally you would not hard-code the password in source.  You should instead obtain it
// from an interactive prompt, environment variable, or a secrets vault.
ftp.set_password("myPassword");

if ftp.connect().is_err() {
    println!("{}", ftp.last_error_text());
    return;
}

if ftp.change_remote_dir("public_html").is_err() {
    println!("{}", ftp.last_error_text());
    return;
}

// GetDirCount retrieves the directory listing on the first call and returns the number of
// entries.  A negative return indicates failure.
let n = ftp.get_dir_count();
if n < 0 {
    println!("{}", ftp.last_error_text());
    return;
}

for i in 0..n {
    let name = ftp.get_filename(i).unwrap_or_default();

    // GetSize returns -1 when the index is invalid or the size is unavailable (for example for a
    // directory).  Use GetSize64 for files that may exceed 2 GB.
    let file_size = ftp.get_size(i);
    println!("{}  {} bytes", name, file_size);
}

if ftp.disconnect().is_err() {
    println!("{}", ftp.last_error_text());
    return;
}