使用python在Google云端存储中创建文件

时间:2017-03-05 17:45:47

标签: google-cloud-storage

这是我用于在Google云端存储中保存新文件的方法

cloud_storage_path = "/gs/[my_app_name].appspot.com/%s/%s" % (user_key.id(), img_title)
    blobstore_key = blobstore.create_gs_key(cloud_storage_path)
    cloud_storage_file = cloudstorage_api.open(
        filename=cloud_storage_path, mode="w", content_type=img_type
    )
    cloud_storage_file.write(img_content)
    cloud_storage_file.close()

但是当执行这个方法时。打印的日志文件:

Path should have format /bucket/filename but got /gs/[my_app_name].appspot.com/6473924464345088/background.jpg

PS:我改变了[my_app_name],[my_app_name] .appspot.com是我的桶名

那么,在这种情况下,接下来我会做什么? 我无法将文件保存到该路径

0 个答案:

没有答案