<tfoot id='CWsIe'></tfoot>

    <small id='CWsIe'></small><noframes id='CWsIe'>

      <bdo id='CWsIe'></bdo><ul id='CWsIe'></ul>
  1. <i id='CWsIe'><tr id='CWsIe'><dt id='CWsIe'><q id='CWsIe'><span id='CWsIe'><b id='CWsIe'><form id='CWsIe'><ins id='CWsIe'></ins><ul id='CWsIe'></ul><sub id='CWsIe'></sub></form><legend id='CWsIe'></legend><bdo id='CWsIe'><pre id='CWsIe'><center id='CWsIe'></center></pre></bdo></b><th id='CWsIe'></th></span></q></dt></tr></i><div id='CWsIe'><tfoot id='CWsIe'></tfoot><dl id='CWsIe'><fieldset id='CWsIe'></fieldset></dl></div>
  2. <legend id='CWsIe'><style id='CWsIe'><dir id='CWsIe'><q id='CWsIe'></q></dir></style></legend>
    1. 如何通过 Python 将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶

      How to move files in Google Cloud Storage from one bucket to another bucket by Python(如何通过 Python 将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶)
      <i id='RCCWF'><tr id='RCCWF'><dt id='RCCWF'><q id='RCCWF'><span id='RCCWF'><b id='RCCWF'><form id='RCCWF'><ins id='RCCWF'></ins><ul id='RCCWF'></ul><sub id='RCCWF'></sub></form><legend id='RCCWF'></legend><bdo id='RCCWF'><pre id='RCCWF'><center id='RCCWF'></center></pre></bdo></b><th id='RCCWF'></th></span></q></dt></tr></i><div id='RCCWF'><tfoot id='RCCWF'></tfoot><dl id='RCCWF'><fieldset id='RCCWF'></fieldset></dl></div>

        <small id='RCCWF'></small><noframes id='RCCWF'>

          <tbody id='RCCWF'></tbody>
          • <bdo id='RCCWF'></bdo><ul id='RCCWF'></ul>
            <legend id='RCCWF'><style id='RCCWF'><dir id='RCCWF'><q id='RCCWF'></q></dir></style></legend>

                <tfoot id='RCCWF'></tfoot>
                本文介绍了如何通过 Python 将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                是否有任何 API 函数允许我们将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶?

                Are there any API function that allow us to move files in Google Cloud Storage from one bucket in another bucket?

                场景是我们希望 Python 将 A 存储桶中的读取文件移动到 B 存储桶.我知道 gsutil 可以做到这一点,但不确定 Python 是否支持.

                The scenario is we want Python to move read files in A bucket to B bucket. I knew that gsutil could do that but not sure Python can support that or not.

                谢谢.

                推荐答案

                使用 google-api-python-client,上有一个例子storage.objects.copy 页面.复制后,您可以使用 storage.objects.delete.

                Using the google-api-python-client, there is an example on the storage.objects.copy page. After you copy, you can delete the source with storage.objects.delete.

                destination_object_resource = {}
                req = client.objects().copy(
                        sourceBucket=bucket1,
                        sourceObject=old_object,
                        destinationBucket=bucket2,
                        destinationObject=new_object,
                        body=destination_object_resource)
                resp = req.execute()
                print json.dumps(resp, indent=2)
                
                client.objects().delete(
                        bucket=bucket1,
                        object=old_object).execute()
                

                这篇关于如何通过 Python 将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)
                      <tbody id='JUfUZ'></tbody>

                      1. <i id='JUfUZ'><tr id='JUfUZ'><dt id='JUfUZ'><q id='JUfUZ'><span id='JUfUZ'><b id='JUfUZ'><form id='JUfUZ'><ins id='JUfUZ'></ins><ul id='JUfUZ'></ul><sub id='JUfUZ'></sub></form><legend id='JUfUZ'></legend><bdo id='JUfUZ'><pre id='JUfUZ'><center id='JUfUZ'></center></pre></bdo></b><th id='JUfUZ'></th></span></q></dt></tr></i><div id='JUfUZ'><tfoot id='JUfUZ'></tfoot><dl id='JUfUZ'><fieldset id='JUfUZ'></fieldset></dl></div>
                        <tfoot id='JUfUZ'></tfoot>

                      2. <small id='JUfUZ'></small><noframes id='JUfUZ'>

                      3. <legend id='JUfUZ'><style id='JUfUZ'><dir id='JUfUZ'><q id='JUfUZ'></q></dir></style></legend>
                          <bdo id='JUfUZ'></bdo><ul id='JUfUZ'></ul>