serge
serge

Reputation: 15239

Manually upload files to azure blob storage

Pretty new to Azure... I have see a blob in the Azure Management Portal, and also I have a vidéo to upload.

I just want to upload that only one video to that concrete blob, nothing more.

How can I do it? I see "Download", "Edit", "Delete", I can even create a new blob storage...

BUT WHERE IS THE BUTTON "ADD A FILE TO THAT BLOB"?

Upvotes: 4

Views: 4523

Answers (4)

Orhan Celik
Orhan Celik

Reputation: 1575

Suggested Azure tool for such file operations is Azure Storage Explorer , it has a user friendly GUI, and login is easy with Azure username & password credentials.

Upvotes: 0

Jason Hogg - MSFT
Jason Hogg - MSFT

Reputation: 1378

There are a number of different storage explorers that enable you to browse and edit files within Storage - see here for a full list. For command line file management you can use AzCopy, PowerShell or XPlat tools - all of which have documentation available here.

Upvotes: 0

giventocode
giventocode

Reputation: 46

If you have the Azure Tools for Visual Studio, you can upload files to your storage account. More info here

Upvotes: 3

Zee
Zee

Reputation: 2370

Unfortunately you cannot add a blob directly to a container from azure portal. What you need is some kind of a tool either you write one or download one. I would recommend Azure Storage Explorer just because I have used it and it does the job, but alternatives are available.

You just need your storage account name and one of the access keys.

You can find the storage account name from Storages section of azure. For the access key you need to go into the storage account and click "Manage Access Keys".

Upvotes: 3

Related Questions