Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bulk upload to blob in Azure

Tags:

.net

azure

I have about 10k images and I need to upload them to blob storage. Are there any tools that do bulk upload? I am also open to writing my own application.

like image 343
Andrew Bezzub Avatar asked Mar 07 '12 18:03

Andrew Bezzub


3 Answers

Look at ClumsyLeaf cloud explorer. Let's you upload files to blob like an FTP client. Alterntaively Azure Storage Explorer. Same idea.

Both allow you to select files from a directory and upload them in one go. Never tried with 10000 but it should work.

like image 144
GraemeMiller Avatar answered Oct 01 '22 16:10

GraemeMiller


Cloud Storage Studio is pretty good, too.

http://cerebrata.com/Products/CloudStorageStudio/

You can get a free 30 trial so no risk. Especially if it's a one-shot deal.

like image 41
David Peden Avatar answered Oct 01 '22 15:10

David Peden


You can use windows azure powershell to upload/download multiple files from azure storage.

For uploading multiple files, you can use the following command line.

ls -File -Recurse | Set-AzureStorageBlobContent -Container upload

For downloading multiple blobs, you can use the following command line.

Get-AzureStorageBlob -Container containername -Blob blobname | Get-AzureStorageBlobContent

For more details, please refer to MSDN page.

http://msdn.microsoft.com/en-us/library/dn408487.aspx

http://msdn.microsoft.com/en-us/library/dn408562.aspx

like image 31
Yao Avatar answered Oct 01 '22 16:10

Yao