Sample code for 30+ languages & platforms
Rust

Check if an FTP Listing Entry is a Symbolic Link

See more FTP Examples

Demonstrates the Chilkat Ftp2.GetIsSymbolicLink method, which returns whether a cached directory-listing entry is a symbolic link. The only argument is a zero-based index. This information is available only when the server's listing format reports it.

Background: Symbolic links matter because following one can lead outside the expected directory or into a cycle, so recursive operations often need to identify and skip them. Unlike the file/directory distinction, symlink information is not always present — only listing formats that mark links (typically Unix-style LIST output) expose it, and this returns false when the server does not.

Chilkat Rust Downloads

Rust

// Demonstrates the Ftp2.GetIsSymbolicLink method, which returns whether a cached directory-listing
// entry is a symbolic link.  The only argument is a zero-based index.  This information is only
// available when the server's listing format reports it.

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();
    if ftp.get_is_symbolic_link(i) {
        println!("[LINK] {}", name);
    } else {
        println!("       {}", name);
    }

}

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