小编sea*_*_oc的帖子

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

我已成功实现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))
Run Code Online (Sandbox Code Playgroud)

python python-3.x google-cloud-storage gcloud-python

11
推荐指数
1
解决办法
7745
查看次数