You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have download_to to make it easy to copy a file from the cloud to the local filesystem. We don't have an equivalent upload or upload_from or copy_from (naming is hard) method to easily create a cloud file from a local one.
E.g
# path that does not exist yetp=CloudPath("az://container/dir/new_file.txt")
# copies "my_local_text_file.txt" to the path specified by pp.upload("my_local_text_file.txt")
The text was updated successfully, but these errors were encountered:
We have
download_to
to make it easy to copy a file from the cloud to the local filesystem. We don't have an equivalentupload
orupload_from
orcopy_from
(naming is hard) method to easily create a cloud file from a local one.E.g
The text was updated successfully, but these errors were encountered: