thomasfrederikhoeck commented on PR #5830:
URL: https://github.com/apache/arrow-rs/pull/5830#issuecomment-2185269693

   I can also add that if I run the following it creates a file at 
`C:\projects\delta\pathtester\C%3A\file%3Aname.parquet`
   
   ```rust
   use object_store::path::{Path};
   use object_store::local::LocalFileSystem;
   use object_store::ObjectStore;
   use bytes::Bytes;
   
   #[tokio::main]
   async fn main() {
       let integration = LocalFileSystem::new();
       let location = Path::parse("C:\\file:name.parquet").unwrap();
       println!("{}",location);
       integration.put(&location, "test".into()).await.unwrap();
   
       let result = integration
           .get(&location)
           .await
           .unwrap()
           .bytes()
           .await
           .unwrap();
       assert_eq!(result, Bytes::from("test"));
   }
   ```


-- 
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