我有这个功能可以将文件上传到我的 firebase 存储桶:
async uploadingViaStream(file: Express.Multer.File) {
const blob = bucket.file(file.originalname);
const uuid = uuidv4();
const blobWriter = blob.createWriteStream({
metadata: {
contentType: file.mimetype,
metadata: {
firebaseStorageDownloadTokens: uuid,
},
},
});
该文件确实上传到我的存储桶,但仅在我的根文件夹中,有没有办法指定我要上传文件的文件夹?