使用 nodejs gcloud api 删除 Google Cloud Storage 中的文件夹 [英] Delete folder in Google Cloud Storage using nodejs gcloud api

查看:22
本文介绍了使用 nodejs gcloud api 删除 Google Cloud Storage 中的文件夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I am using gcloud nodejs api to access Google Cloud Storage. I can save/delete/exists files individually, but I didn't find a way to delete a folder or even to list the files in a folder using gcloud nodejs api.

I have seen people say that the folder hierachy in GCS is not a real tree structure, but just names. So I tried to use wildcard to match the file name string, which did not succeed.

I wonder if there is any way to do it. If not, what tool should I use?

解决方案

The code to list files in a directory should look something like this:

bucket.getFiles({ prefix: 'directoryName/' }, function(err, files) {})

And to delete:

bucket.deleteFiles({ prefix: 'directoryName/' }, function(err) {})

这篇关于使用 nodejs gcloud api 删除 Google Cloud Storage 中的文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆