matthias-Q opened a new issue, #6533:
URL: https://github.com/apache/arrow-rs/issues/6533

   **Which part is this question about**
   I want to list files in a S3 bucket
   
   
   **Describe your question**
   
   I have prepared the connection to the S3 bucket using:
   ```rust
   let storage_container_key = object_store::aws::AmazonS3Builder::from_env()
           .with_bucket_name("my_bucket")
           .build()
           .expect(""),
   );
   
   let key_prefix = &object_store::path::Path::from(key);
   let stream = storage_container_key.list(Some(key_prefix));
   ```
   How can I access the stream? Documentation is not helping here. I think this 
needs an code example.
   
   Thanks
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to