use azure_storage::core::prelude::*; use azure_storage_blobs::prelude::*; use futures::StreamExt; use std::num::NonZeroU32; #[tokio::main] async fn main() -> azure_core::Result<()> { // 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_client = StorageClient::new_access_key(&account, &access_key); let blob_service_client = storage_client.blob_service_client(); let container_client = storage_client.container_client(&container_name); let page = blob_service_client .list_containers() .into_stream() .next() .await .expect("stream failed")?; if page .containers .iter() .any(|item| item.name == container_name) { panic!("The specified container must not exists!"); } // create the container container_client .create() .public_access(PublicAccess::None) .into_future() .await?; println!("Container {} created", container_name); println!("Checking that container is empty"); let page = container_client .list_blobs() .max_results(NonZeroU32::new(100u32).unwrap()) .delimiter("/") .into_stream() .next() .await .expect("stream failed")?; assert!(page.blobs.blobs.is_empty()); println!("Adding blobs"); // create 4 root blobs for i in 0..4u8 { container_client .blob_client(format!("blob_at_root{}.txt", i)) .put_block_blob("somedata") .content_type("text/plain") .into_future() .await?; } // create 3 firstfolder/ blobs for i in 0..3u8 { container_client .blob_client(format!("firstfolder/blob_at_1stfolder{}.txt", i)) .put_block_blob("somedata") .content_type("text/plain") .into_future() .await?; } // create 3 secondroot/ blobs for i in 0..3u8 { container_client .blob_client(format!("secondroot/blobsd{}.txt", i)) .put_block_blob("somedata") .content_type("text/plain") .into_future() .await?; } // create 2 firstfolder/secondfolder blobs for i in 0..2u8 { container_client .blob_client(format!("firstfolder/secondfolder/blob{}.txt", i)) .put_block_blob("somedata") .content_type("text/plain") .into_future() .await?; } // create 4 firstfolder/thirdfolder blobs for i in 0..4u8 { container_client .blob_client(format!("firstfolder/thirdfolder/blob{}.txt", i)) .put_block_blob("somedata") .content_type("text/plain") .into_future() .await?; } // create 4 firstfolder/fourthfolder blobs for i in 0..5u8 { container_client .blob_client(format!( "firstfolder/thirdfolder/fourthfolder/blob{}.txt", i )) .put_block_blob("somedata") .content_type("text/plain") .into_future() .await?; } let page = container_client .list_blobs() .max_results(NonZeroU32::new(100u32).unwrap()) .delimiter("/") .into_stream() .next() .await .expect("stream failed")?; println!( "List blob / returned {} blobs with blob_prefix == {:?}", page.blobs.blobs.len(), page.blobs.blob_prefix ); page.blobs .blobs .iter() .for_each(|b| println!("\t{}", b.name)); assert_eq!(page.blobs.blobs.len(), 4); let page = container_client .list_blobs() .max_results(NonZeroU32::new(100u32).unwrap()) .prefix("firstfolder/") .delimiter("/") .into_stream() .next() .await .expect("stream failed")?; println!( "List blob firstfolder/ returned {} blobs with blob_prefix == {:?}", page.blobs.blobs.len(), page.blobs.blob_prefix ); page.blobs .blobs .iter() .for_each(|b| println!("\t{}", b.name)); assert_eq!(page.blobs.blobs.len(), 3); let mut stream = container_client .list_blobs() .max_results(NonZeroU32::new(5u32).unwrap()) .into_stream(); println!("Streaming results without prefix"); let mut cnt: i32 = 0; while let Some(value) = stream.next().await { let len = value?.blobs.blobs.len(); println!("\treceived {} blobs", len); match cnt { // we added 21 blobs so 5x4 + 1 0 | 1 | 2 | 3 => assert_eq!(len, 5), 4 => assert_eq!(len, 1), _ => panic!("more than entries than expected!"), } cnt += 1; } container_client.delete().into_future().await?; println!("Container {} deleted", container_name); Ok(()) }