使用Python将文件上传到Google Cloud Storage Bucket子目录

时间:2017-11-06 16:17:42

标签: python python-3.x google-cloud-storage gcloud-python

我已经成功实现了python函数将文件上传到Google Cloud Storage存储桶,但我想将其添加到存储桶中的子目录(文件夹)中,当我尝试将其添加到存储桶名称时代码失败找到该文件夹​​。

谢谢!

def upload_blob(bucket_name, source_file_name, destination_blob_name):
  """Uploads a file to the bucket."""
  storage_client = storage.Client()
  bucket = storage_client.get_bucket(bucket_name +"/folderName") #I tried to add my folder here
  blob = bucket.blob(destination_blob_name)

  blob.upload_from_filename(source_file_name)

  print('File {} uploaded to {}.'.format(
    source_file_name,
    destination_blob_name))

1 个答案:

答案 0 :(得分:15)

您正在添加"文件夹"在错误的地方。请注意,Google云端存储没有真正的文件夹或目录(请参阅Naming部分的最后一个内容)。

模拟目录实际上只是一个名称中带有前缀的对象。例如,而不是你现在拥有的东西:

  • bucket = bucket / folderName
  • object = objectname

你反而想要:

  • bucket = bucket
  • object = folderName / objectname

对于您的代码,我认为这应该有效:

bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob("folderName/" + destination_blob_name)
blob.upload_from_filename(source_file_name)