◷ Reading Time: 1 minute
blobSave
Creates or updates a blob.
blobSave (connection, containerName, fileName, fileContent)
- connection: connection string to the storage account.
- containerName: name of the container where blob will be saved.
- fileName: name of the blob in the container.
- fileContent: the string or byte array contents of the blob.
blobRead
Reads the contents of a blob
fileContents |blobRead (connection, containerName, fileName)
- connection: connection string to the storage account.
- containerName: name of the container where blob exists.
- fileName: name of the blob in the container.
blobDelete
Deletes a blob.
blobDelete (connection, containerName, fileName)
- connection: connection string to the storage account.
- containerName: name of the container where blob exists.
- fileName: name of the blob in the container.