Skip to main content

azfile

6 configuration options · available in Rust, Python, Node.js, Java

Quick start
use opendal::Operator;

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

let op = Operator::via_iter("azfile", [
// The root path for azfile.
// ("root".to_string(), "...".to_string()),

// The endpoint for azfile.
// ("endpoint".to_string(), "...".to_string()),

// The share name for azfile.
("share_name".to_string(), "...".to_string()),

// The account name for azfile.
// ("account_name".to_string(), "...".to_string()),

// The account key for azfile.
// ("account_key".to_string(), "...".to_string()),

// The sas token for azfile.
// ("sas_token".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

General6
KeyTypeRequiredDescription
rootstringnoThe root path for azfile.
endpointstringnoThe endpoint for azfile.
share_namestringyesThe share name for azfile.
account_namestringnoThe account name for azfile.
account_keystringnoThe account key for azfile.
sas_tokenstringnoThe sas token for azfile.