In azure cli the command
az storage blob upload-batch --source <source folder> --destination-path <destination path> --destination <destination>
is it available the same api in the javascript sdk @azure/storage-blob or in another package?
Thank you!
AFAIK, this feature is not available in any SDK.
If you are using
@azure/storage-blob, you would need to list files in a folder yourself (usingfsmodule) and then upload each file usinguploadFile(string, BlockBlobParallelUploadOptions)method which is whataz storage blob upload-batchis doing.