Azure Blob Storage

◷ Reading Time: 1 minute

blobSave  Supported in .Net Platforms

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 Supported in .Net Platforms

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 Supported in .Net Platforms

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.
Updated on June 1, 2020

Was this article helpful?

Related Articles