use azure_storage::prelude::*; use azure_storage_blobs::prelude::*; use futures::StreamExt; #[tokio::main] async fn main() -> azure_core::Result<()> { tracing_subscriber::fmt().init(); // First we retrieve the account name and access key from environment variables. let account = std::env::var("STORAGE_ACCOUNT").expect("Set env variable STORAGE_ACCOUNT first!"); let access_key = std::env::var("STORAGE_ACCESS_KEY").expect("Set env variable STORAGE_ACCESS_KEY first!"); let container_name = std::env::args() .nth(1) .expect("please specify container name as command line parameter"); let storage_credentials = StorageCredentials::access_key(account.clone(), access_key); let service_client = BlobServiceClient::new(account, storage_credentials); let container_client = service_client.container_client(container_name); let blob_client = container_client.blob_client("SorgeniaReorganizeRebuildIndexes.zip"); // only get the first chunk let result = blob_client .get() .into_stream() .next() .await .expect("stream failed")?; println!("{result:?}"); Ok(()) }