Skip to main content

ftp

4 configuration options · available in Rust, Python, Node.js

Quick start
use opendal::Operator;

let op = Operator::via_iter("ftp", [
])?;
All configuration options (copy & trim)
Full reference
use opendal::Operator;

let op = Operator::via_iter("ftp", [
// endpoint of this backend
// ("endpoint".to_string(), "...".to_string()),

// root of this backend
// ("root".to_string(), "...".to_string()),

// user of this backend
// ("user".to_string(), "...".to_string()),

// password of this backend
// ("password".to_string(), "...".to_string()),

])?;

Every option is passed as a string key; OpenDAL parses it into the right type. Some services may require building the binding with the matching services-* feature enabled.

Configuration reference

General4
KeyTypeRequiredDescription
endpointstringnoendpoint of this backend
rootstringnoroot of this backend
userstringnouser of this backend
passwordstringnopassword of this backend