20

I am building a web application , where users can upload images & videos and store them in their account. I want to store these files somewhere and save only the URL in the DB.

What is the right way to do it using Azure services? Is there a dedicated server for this, or some VM?

Paolo Forgia
  • 6,572
  • 8
  • 46
  • 58
Bergerova
  • 863
  • 3
  • 10
  • 21

1 Answers1

26

Yes, there is a dedicated service for this purpose. It is the Azure Blob Storage. And you are highly advised to save all and any user uploaded content to that service instead to the local file system.

The provided link has samples for almost any language that has client SDK provided by microsoft.

If, at the end you use some platform or language that is not directly supported by an SDK, you can always refer to the Blob Storage REST API documentation.

You will need to go through the blob service concepts to get deeper understanding of the service and how to use it.

astaykov
  • 30,768
  • 3
  • 70
  • 86