有没有办法将 Google Cloud Storage 对象从 SDK Shell 复制到像 Box 这样的网络驱动器?
Is there a way to copy Google Cloud Storage object from SDK Shell to network drive like Box?
有没有办法通过 SDK Shell 将 GCS 对象复制到像 Box 这样的网络驱动器?
下面是我试过的。谢谢
gsutil cp gs://your-bucket/some_file.tif C:/Users/Box/01. name/folder
CommandException: Destination URL must name a directory, bucket, or bucket
subdirectory for the multiple source form of the cp command.
您的目的地似乎有错字:
C:/Users/Box/01. name/folder
在句点之后和 'name' 之前有一个 space - 您需要将其用引号引起来或转义 space。看起来你在 Windows; here's a doc 关于如何转义文件路径中的 spaces。
有没有办法通过 SDK Shell 将 GCS 对象复制到像 Box 这样的网络驱动器?
下面是我试过的。谢谢
gsutil cp gs://your-bucket/some_file.tif C:/Users/Box/01. name/folder
CommandException: Destination URL must name a directory, bucket, or bucket
subdirectory for the multiple source form of the cp command.
您的目的地似乎有错字:
C:/Users/Box/01. name/folder
在句点之后和 'name' 之前有一个 space - 您需要将其用引号引起来或转义 space。看起来你在 Windows; here's a doc 关于如何转义文件路径中的 spaces。