Python - 将文件上载到云存储

时间:2015-12-30 22:37:52

标签: python-2.7 google-cloud-storage

https://cloud.google.com/storage/docs/json_api/v1/json-api-python-samples

使用上面的示例,我能够将文件上传到存储桶。但是我无法将其上传到存储桶中的文件夹。

错误:“无效的存储桶名称:”

感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

def upload_object(bucket, filename, readers, owners):
    service = create_service()

    # This is the request body as specified:
    # http://g.co/cloud/storage/docs/json_api/v1/objects/insert#request
    body = {
        'name': 'foldername/' + filename,
    }

添加< foldername /' + filename。

这会将它指向正确的位置。