Azure Blob Storage
- list file
/* eslint-disable no-undef */
const { ContainerClient } = require("@azure/storage-blob");
const azure = {
blobContainer: "xxx",
storageAccount: "xxx",
sasDomain: "blob.core.xxx.cn",
containerName: "xxx",
sasToken: "sp=xxx",
};
const getStorageDetails = () => {
return {
containerName: azure …