Vincent Renard
01/20/2023, 10:18 AM/
(forward slashes) into \\
double backward slashes during the upload tasks,
• Which translates into the blob being named, for example, as:
foo\\bar\\foobar.txt
• Instead of actually:
foo/bar/foobar.txt
Which would be represented as "folders" in the GCS Web interface.
We're not sure if the same issue happens on macOS or Linux
We've tried not only the upload_from_path
but also the upload_from_file_object
https://prefecthq.github.io/prefect-gcp/cloud_storage/
Thanks in advance for any feedbackPeyton Runyan
01/20/2023, 1:13 PMVincent Renard
01/20/2023, 1:14 PMpath = Path(path).as_posix()
Peyton Runyan
01/20/2023, 5:40 PM