如何使用 blobstore 和 google 云存储将文件上传到 AppEngine 中的自定义文件夹

How to upload files to custom folder in AppEngine with blobstore and google cloud storage

我正在使用 Google AppEngine。我正在使用 blobstore 将文件上传到 Google 云存储。 (由于AppEngine的请求大小限制,我无法直接上传到云存储。)

我可以上传到 Google 云存储。但是我无法指定要上传的文件夹。所以每个文件都存储在根文件夹中。

谁能告诉我如何上传到特定文件夹?

我使用 https://github.com/crhym3/java-blobstore-gcs-sample

中的代码

事实证明,您可以将带有存储桶名称的“文件夹”名称传递给 .withGoogleStorageBucketName() 方法,例如:

UploadOptions uploadOptions = UploadOptions.Builder
     .withGoogleStorageBucketName("bucket_name/folder_name");