作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用azure函数和node js创建一个zip文件(abc.zip),其中包含函数应用程序临时文件夹中的一些文件,下一步我需要将zip文件上传到 azure 的 Blob 存储。问题是 blob 存储路径必须类似于“/xyz/pqr/ghk”。如何实现这一目标?
最佳答案
正如@GauravMantri 所指出的,试试这个:
const {
BlobServiceClient
} = require("@azure/storage-blob");
const connectionString = ''
const container = ''
const destBlobName = 'test.zip'
const blob = 'xyz/pqr/ghk/' + destBlobName
const zipFilePath = "<some function temp path>/<filename>.zip"
const blobClient = BlobServiceClient.fromConnectionString(connectionString).getContainerClient(container).getBlockBlobClient(blob)
blobClient.uploadFile(zipFilePath)
如果您还有其他问题,请告诉我:)
关于node.js - 从本地上传 zip 在 azure blob 子容器中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67206218/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!